##// END OF EJS Templates
convert: subversion should use util.quotecommand to wrap args to popen2...
Steve Borho -
r13190:5314cbb7 default
parent child Browse files
Show More
@@ -914,7 +914,7 b' class svn_source(converter_source):'
914 914 arg = encodeargs(args)
915 915 hgexe = util.hgexecutable()
916 916 cmd = '%s debugsvnlog' % util.shellquote(hgexe)
917 stdin, stdout = util.popen2(cmd)
917 stdin, stdout = util.popen2(util.quotecommand(cmd))
918 918 stdin.write(arg)
919 919 try:
920 920 stdin.close()
General Comments 0
You need to be logged in to leave comments. Login now