# HG changeset patch # User Matt Mackall # Date 1277680849 18000 # Node ID 3827728b54e20febd05a862663191293a431dc90 # Parent 9b0406b23be022a12b0b1173a0e3c50e0f6c65e9 subrepo: fix silent push failure for SVN (issue2241) diff -r 9b0406b23be0 -r 3827728b54e2 mercurial/subrepo.py --- a/mercurial/subrepo.py Fri Jun 18 08:49:24 2010 +0200 +++ b/mercurial/subrepo.py Sun Jun 27 18:20:49 2010 -0500 @@ -379,8 +379,8 @@ self.get(state) def push(self, force): - # nothing for svn - pass + # push is a no-op for SVN + return True types = { 'hg': hgsubrepo,