changeset 5118:07735e2d24cb

debugsvnlog call had too many quotes (found by Edouard Gomez)
author Thomas Arendsen Hein <thomas@intevation.de>
date Tue, 07 Aug 2007 12:10:56 +0200
parents d4fa6bafc43a
children 0751c25ea0c0
files hgext/convert/subversion.py
diffstat 1 files changed, 1 insertions(+), 1 deletions(-) [+]
line wrap: on
line diff
--- 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)