comparison hgext/convert/subversion.py @ 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
comparison
equal deleted inserted replaced
5117:d4fa6bafc43a 5118:07735e2d24cb
243 243
244 args = [self.url, paths, start, end, limit, discover_changed_paths, 244 args = [self.url, paths, start, end, limit, discover_changed_paths,
245 strict_node_history] 245 strict_node_history]
246 arg = encodeargs(args) 246 arg = encodeargs(args)
247 hgexe = util.hgexecutable() 247 hgexe = util.hgexecutable()
248 cmd = '"%s "debugsvnlog""' % util.shellquote(hgexe) 248 cmd = '%s debugsvnlog' % util.shellquote(hgexe)
249 stdin, stdout = os.popen2(cmd, 'b') 249 stdin, stdout = os.popen2(cmd, 'b')
250 250
251 stdin.write(arg) 251 stdin.write(arg)
252 stdin.close() 252 stdin.close()
253 253