Skip to content
Snippets Groups Projects
Commit c693541e authored by Kevin Bullock's avatar Kevin Bullock
Browse files

compat: drop compat code from hg < 1.9 (!!)

parent 633796ad
No related branches found
No related tags found
No related merge requests found
......@@ -106,18 +106,6 @@
# support for `hg clone localgitrepo`
_oldlocal = hg.schemes['file']
# COMPAT: hg 1.9 - url.url class moved into util module
try:
urlcls = hgutil.url
except AttributeError:
class urlcls(object):
def __init__(self, path):
self.p = hgutil.drop_scheme('file', path)
def localpath(self):
return self.p
def _isgitdir(path):
"""True if the given file path is a git repo."""
if os.path.exists(os.path.join(path, '.hg')):
......@@ -137,7 +125,7 @@
def _local(path):
p = urlcls(path).localpath()
p = hgutil.url(path).localpath()
if _isgitdir(p):
return gitrepo
# detect git ssh urls (which mercurial thinks is a file-like path)
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment