# HG changeset patch # User Matt Mackall # Date 2009-12-14 21:02:02 # Node ID 606b563e41db777c889aac72ae114aad4282de30 # Parent fd6729805f44c0686abf0a4d59449284b2ff7dd6 # Parent 8f14f749f47113da7091d9a78c8d35d05a1b3d1d Merge with -stable diff --git a/mercurial/subrepo.py b/mercurial/subrepo.py --- a/mercurial/subrepo.py +++ b/mercurial/subrepo.py @@ -175,6 +175,9 @@ class hgsubrepo(object): else: util.makedirs(root) self._repo = hg.repository(r.ui, root, create=True) + f = file(os.path.join(root, '.hg', 'hgrc'), 'w') + f.write('[paths]\ndefault = %s\n' % state[0]) + f.close() self._repo._subparent = r self._repo._subsource = state[0]