# HG changeset patch # User Matt Mackall # Date 2010-06-27 23:20:49 # Node ID 3827728b54e20febd05a862663191293a431dc90 # Parent 9b0406b23be022a12b0b1173a0e3c50e0f6c65e9 subrepo: fix silent push failure for SVN (issue2241) diff --git a/mercurial/subrepo.py b/mercurial/subrepo.py --- a/mercurial/subrepo.py +++ b/mercurial/subrepo.py @@ -379,8 +379,8 @@ class svnsubrepo(object): self.get(state) def push(self, force): - # nothing for svn - pass + # push is a no-op for SVN + return True types = { 'hg': hgsubrepo,