Mercurial > hg
changeset 5144: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 Tue Aug 07 10:28:43 2007 +0200 +++ b/hgext/convert/subversion.py Tue Aug 07 12:10:56 2007 +0200 @@ -245,7 +245,7 @@ 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)