mercurial/merge.py
changeset 22200 b27c3beaaf30
parent 21551 bde505f47141
child 22207 8dda6f6ff564
--- a/mercurial/merge.py	Fri Aug 15 16:20:47 2014 +0200
+++ b/mercurial/merge.py	Fri Aug 15 16:20:47 2014 +0200
@@ -10,7 +10,7 @@
 from node import nullid, nullrev, hex, bin
 from i18n import _
 from mercurial import obsolete
-import error, util, filemerge, copies, subrepo, worker, dicthelpers
+import error as errormod, util, filemerge, copies, subrepo, worker, dicthelpers
 import errno, os, shutil
 
 _pack = struct.pack
@@ -1011,7 +1011,7 @@
             # but currently we are only checking the branch tips.
             try:
                 node = repo.branchtip(wc.branch())
-            except error.RepoLookupError:
+            except errormod.RepoLookupError:
                 if wc.branch() == "default": # no default branch!
                     node = repo.lookup("tip") # update to tip
                 else: