comparison hgext/convert/subversion.py @ 5111:9cda2315c7a9

convert: Use debugsvnlog instead of git-like debug-svn-log.
author Thomas Arendsen Hein <thomas@intevation.de>
date Tue, 07 Aug 2007 09:42:32 +0200
parents 78eb03cbe535
children 18abf13064cb
comparison
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