mercurial/hg.py
changeset 18944 a9c443b3b240
parent 18553 b6b9475c563a
child 19313 3b96d6e44a4d
child 19332 0af993732f66
--- a/mercurial/hg.py	Mon Apr 15 23:52:57 2013 +0900
+++ b/mercurial/hg.py	Fri Jan 18 15:54:09 2013 +0100
@@ -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,