debugsvnlog call had too many quotes (found by Edouard Gomez)
authorThomas Arendsen Hein <thomas@intevation.de>
Tue, 07 Aug 2007 12:10:56 +0200
changeset 5118 07735e2d24cb
parent 5117 d4fa6bafc43a
child 5119 0751c25ea0c0
debugsvnlog call had too many quotes (found by Edouard Gomez)
hgext/convert/subversion.py
--- a/hgext/convert/subversion.py
+++ b/hgext/convert/subversion.py
@@ -245,7 +245,7 @@ class convert_svn(converter_source):
                 strict_node_history]
         arg = encodeargs(args)
         hgexe = util.hgexecutable()
-        cmd = '"%s "debugsvnlog""' % util.shellquote(hgexe)
+        cmd = '%s debugsvnlog' % util.shellquote(hgexe)
         stdin, stdout = os.popen2(cmd, 'b')
 
         stdin.write(arg)