diff mercurial/hg.py @ 4840:bf10a03a6b24

Removed deprecated hg:// and old-http:// protocols (issue406)
author Thomas Arendsen Hein <thomas@intevation.de>
date Sun, 08 Jul 2007 09:54:42 +0200
parents 616a5adbf402
children 97b734fb9c6f
line wrap: on
line diff
--- 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'