hgext/convert/subversion.py
changeset 5118 07735e2d24cb
parent 5117 d4fa6bafc43a
child 5119 0751c25ea0c0
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