##// END OF EJS Templates
cast return value to str in getoutput
Jörgen Stenarson -
Show More
@@ -155,7 +155,7 b' def getoutput(cmd):'
155
155
156 if out is None:
156 if out is None:
157 out = ''
157 out = ''
158 return out
158 return py3compat.bytes_to_str(out)
159
159
160 try:
160 try:
161 CommandLineToArgvW = ctypes.windll.shell32.CommandLineToArgvW
161 CommandLineToArgvW = ctypes.windll.shell32.CommandLineToArgvW
General Comments 0
You need to be logged in to leave comments. Login now