Skip to content
Snippets Groups Projects
Commit 19a4d34f authored by timeless developer's avatar timeless developer
Browse files

mecurial version churn

parent ee358184
Branches branch/default
No related tags found
No related merge requests found
Pipeline #5945 passed
......@@ -75,8 +75,12 @@
try:
from mercurial import registrar
command = registrar.command(cmdtable)
except (ImportError, AttributeError):
command = cmdutil.command(cmdtable)
try:
configitem = registrar.configitem(configtable)
compat.registerconfigs(configitem)
templatekeyword = registrar.templatekeyword()
except (ImportError, AttributeError):
......@@ -78,9 +82,8 @@
configitem = registrar.configitem(configtable)
compat.registerconfigs(configitem)
templatekeyword = registrar.templatekeyword()
except (ImportError, AttributeError):
command = cmdutil.command(cmdtable)
templatekeyword = compat.templatekeyword()
# support for `hg clone git://github.com/defunkt/facebox.git`
......
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