hgext/convert/subversion.py
changeset 5111 9cda2315c7a9
parent 5105 78eb03cbe535
child 5112 18abf13064cb
equal deleted inserted replaced
5110:2be225ea5722 5111:9cda2315c7a9
   234             
   234             
   235         args = [self.url, paths, start, end, limit, discover_changed_paths,
   235         args = [self.url, paths, start, end, limit, discover_changed_paths,
   236                 strict_node_history]
   236                 strict_node_history]
   237         arg = encodeargs(args)
   237         arg = encodeargs(args)
   238         hgexe = util.hgexecutable()
   238         hgexe = util.hgexecutable()
   239         cmd = '"%s "debug-svn-log""' % util.shellquote(hgexe)
   239         cmd = '"%s "debugsvnlog""' % util.shellquote(hgexe)
   240         stdin, stdout = os.popen2(cmd, 'b')
   240         stdin, stdout = os.popen2(cmd, 'b')
   241         
   241         
   242         stdin.write(arg)
   242         stdin.write(arg)
   243         stdin.close()
   243         stdin.close()
   244 
   244