Submitter | Katsunori FUJIWARA |
---|---|
Date | Nov. 19, 2014, 9:41 a.m. |
Message ID | <a19ee70858778a179d46.1416390107@juju> |
Download | mbox | patch |
Permalink | /patch/6788/ |
State | Accepted |
Commit | 83736508e98adf276ab7285ab4b022f5818eefa0 |
Headers | show |
Comments
Patch
diff --git a/mercurial/subrepo.py b/mercurial/subrepo.py --- a/mercurial/subrepo.py +++ b/mercurial/subrepo.py @@ -522,7 +522,7 @@ class hgsubrepo(abstractsubrepo): self._state = state r = ctx._repo root = r.wjoin(path) - create = not os.path.exists(os.path.join(root, '.hg')) + create = not r.wvfs.exists('%s/.hg' % path) self._repo = hg.repository(r.baseui, root, create=create) for s, k in [('ui', 'commitsubrepos')]: v = r.ui.config(s, k)