hgext/convert/subversion.py
changeset 8339 f55869abb5c3
parent 8248 d093e57671ea
child 8660 b9ec04eb2aa3
equal deleted inserted replaced
8338:44e9771746b9 8339:f55869abb5c3
   985         args = [self.baseurl, relpaths, start, end, limit, discover_changed_paths,
   985         args = [self.baseurl, relpaths, start, end, limit, discover_changed_paths,
   986                 strict_node_history]
   986                 strict_node_history]
   987         arg = encodeargs(args)
   987         arg = encodeargs(args)
   988         hgexe = util.hgexecutable()
   988         hgexe = util.hgexecutable()
   989         cmd = '%s debugsvnlog' % util.shellquote(hgexe)
   989         cmd = '%s debugsvnlog' % util.shellquote(hgexe)
   990         stdin, stdout = util.popen2(cmd, 'b')
   990         stdin, stdout = util.popen2(cmd)
   991         stdin.write(arg)
   991         stdin.write(arg)
   992         stdin.close()
   992         stdin.close()
   993         return logstream(stdout)
   993         return logstream(stdout)
   994 
   994 
   995 pre_revprop_change = '''#!/bin/sh
   995 pre_revprop_change = '''#!/bin/sh