# HG changeset patch # User Thomas Arendsen Hein # Date 1186481456 -7200 # Node ID 07735e2d24cbfe5676514b0dd4ef8b74fdf1e1c5 # Parent d4fa6bafc43aeb5423c89fdb28536f2004d3022d debugsvnlog call had too many quotes (found by Edouard Gomez) diff --git a/hgext/convert/subversion.py b/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)