##// 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 arg = encodeargs(args)
914 arg = encodeargs(args)
915 hgexe = util.hgexecutable()
915 hgexe = util.hgexecutable()
916 cmd = '%s debugsvnlog' % util.shellquote(hgexe)
916 cmd = '%s debugsvnlog' % util.shellquote(hgexe)
917 stdin, stdout = util.popen2(cmd)
917 stdin, stdout = util.popen2(util.quotecommand(cmd))
918 stdin.write(arg)
918 stdin.write(arg)
919 try:
919 try:
920 stdin.close()
920 stdin.close()
General Comments 0
You need to be logged in to leave comments. Login now