Show More
@@ -36,6 +36,7 b' from mercurial import unionrepo' | |||
|
36 | 36 | from mercurial import localrepo |
|
37 | 37 | from mercurial import merge as hg_merge |
|
38 | 38 | from mercurial import subrepo |
|
39 | from mercurial import subrepoutil | |
|
39 | 40 | from mercurial import tags as hg_tag |
|
40 | 41 | |
|
41 | 42 | from mercurial.commands import clone, nullid, pull |
@@ -62,7 +62,7 b' def _dynamic_capabilities_wrapper(lfprot' | |||
|
62 | 62 | |
|
63 | 63 | def patch_subrepo_type_mapping(): |
|
64 | 64 | from collections import defaultdict |
|
65 | from hgcompat import subrepo | |
|
65 | from hgcompat import subrepo, subrepoutil | |
|
66 | 66 | from vcsserver.exceptions import SubrepoMergeException |
|
67 | 67 | |
|
68 | 68 | class NoOpSubrepo(subrepo.abstractsubrepo): |
@@ -97,7 +97,7 b' def patch_subrepo_type_mapping():' | |||
|
97 | 97 | def basestate(self): |
|
98 | 98 | """current working directory base state, disregarding .hgsubstate |
|
99 | 99 | state and working directory modifications""" |
|
100 | substate = subrepo.state(self._ctx, self.ui) | |
|
100 | substate = subrepoutil.state(self._ctx, self.ui) | |
|
101 | 101 | file_system_path, rev, repotype = substate.get(self._path) |
|
102 | 102 | return rev |
|
103 | 103 |
General Comments 0
You need to be logged in to leave comments.
Login now