mercurial/hg.py
changeset 4840 bf10a03a6b24
parent 4819 616a5adbf402
child 4959 97b734fb9c6f
--- a/mercurial/hg.py
+++ b/mercurial/hg.py
@@ -21,13 +21,11 @@ def _local(path):
 schemes = {
     'bundle': bundlerepo,
     'file': _local,
-    'hg': httprepo,
     'http': httprepo,
     'https': httprepo,
-    'old-http': statichttprepo,
     'ssh': sshrepo,
     'static-http': statichttprepo,
-    }
+}
 
 def _lookup(path):
     scheme = 'file'