changeset 10665:664bb0ce95ed stable

subrepo: forward the push to argument into _abssource
author Edouard Gomez <ed.gomez@free.fr>
date Fri, 12 Mar 2010 01:23:35 +0100
parents 19c0ff5606e1
children 4c50a90b90fc
files mercurial/subrepo.py
diffstat 1 files changed, 1 insertions(+), 1 deletions(-) [+]
line wrap: on
line diff
--- a/mercurial/subrepo.py	Fri Mar 12 00:45:27 2010 +0100
+++ b/mercurial/subrepo.py	Fri Mar 12 01:23:35 2010 +0100
@@ -131,7 +131,7 @@
         source = repo._subsource
         if source.startswith('/') or '://' in source:
             return source
-        parent = _abssource(repo._subparent)
+        parent = _abssource(repo._subparent, push)
         if '://' in parent:
             if parent[-1] == '/':
                 parent = parent[:-1]