Submitter | Jordi Gutiérrez Hermoso |
---|---|
Date | Jan. 16, 2018, 1:42 p.m. |
Message ID | <cebbb137db75c45e891a.1516110136@Iris> |
Download | mbox | patch |
Permalink | /patch/26785/ |
State | Accepted |
Headers | show |
Comments
Patch
diff --git a/mercurial/subrepo.py b/mercurial/subrepo.py --- a/mercurial/subrepo.py +++ b/mercurial/subrepo.py @@ -1284,6 +1284,9 @@ class svnsubrepo(abstractsubrepo): raise error.Abort(_('cannot retrieve svn tool version')) return (int(m.group(1)), int(m.group(2))) + def _svnmissing(self): + return not self.wvfs.exists('.svn') + def _wcrevs(self): # Get the working directory revision as well as the last # commit revision so we can compare the subrepo state with