mercurial/hg.py
branchstable
changeset 19067 292cd385856d
parent 18944 a9c443b3b240
child 19313 3b96d6e44a4d
child 19332 0af993732f66
--- a/mercurial/hg.py	Thu Apr 04 16:28:19 2013 -0500
+++ b/mercurial/hg.py	Thu Apr 18 23:46:26 2013 -0500
@@ -9,8 +9,8 @@
 from i18n import _
 from lock import release
 from node import hex, nullid
-import localrepo, bundlerepo, httppeer, sshpeer, statichttprepo, bookmarks
-import lock, util, extensions, error, node, scmutil, phases, url
+import localrepo, bundlerepo, unionrepo, httppeer, sshpeer, statichttprepo
+import bookmarks, lock, util, extensions, error, node, scmutil, phases, url
 import cmdutil, discovery
 import merge as mergemod
 import verify as verifymod
@@ -64,6 +64,7 @@
 
 schemes = {
     'bundle': bundlerepo,
+    'union': unionrepo,
     'file': _local,
     'http': httppeer,
     'https': httppeer,