hgext/convert/monotone.py
changeset 6332 950e72fc7cf3
parent 6307 6840668e3bf6
child 6376 b40e90341ae2
--- a/hgext/convert/monotone.py	Thu Mar 20 22:58:53 2008 +0100
+++ b/hgext/convert/monotone.py	Thu Mar 20 23:32:43 2008 +0100
@@ -2,7 +2,8 @@
 
 import os, re, time
 from mercurial import util
-from common import NoRepo, commit, converter_source, checktool, commandline
+from common import NoRepo, MissingTool, commit, converter_source, checktool
+from common import commandline
 from mercurial.i18n import _
 
 class monotone_source(converter_source, commandline):
@@ -41,7 +42,7 @@
         if not os.path.exists(path):
             raise norepo
 
-        checktool('mtn')
+        checktool('mtn', abort=False)
 
         # test if there are any revisions
         self.rev = None