hgext/convert/common.py
changeset 14271 4030630fb59c
parent 14234 600e64004eb5
child 15606 2ad4e9b44d8b
child 15608 63ff8fe3a8f0
--- a/hgext/convert/common.py	Sun May 08 16:16:41 2011 -0500
+++ b/hgext/convert/common.py	Sun May 08 20:35:46 2011 +0200
@@ -29,7 +29,7 @@
 
 def checktool(exe, name=None, abort=True):
     name = name or exe
-    if not util.find_exe(exe):
+    if not util.findexe(exe):
         exc = abort and util.Abort or MissingTool
         raise exc(_('cannot find required "%s" tool') % name)