##// END OF EJS Templates
plan9: update util.py for cpython 2.7 build
Jeff Sickel -
r19729:dfefb719 default
parent child Browse files
Show More
@@ -469,7 +469,8 b' def system(cmd, environ={}, cwd=None, on'
469 return str(val)
469 return str(val)
470 origcmd = cmd
470 origcmd = cmd
471 cmd = quotecommand(cmd)
471 cmd = quotecommand(cmd)
472 if sys.platform == 'plan9':
472 if sys.platform == 'plan9' and (sys.version_info[0] == 2
473 and sys.version_info[1] < 7):
473 # subprocess kludge to work around issues in half-baked Python
474 # subprocess kludge to work around issues in half-baked Python
474 # ports, notably bichued/python:
475 # ports, notably bichued/python:
475 if not cwd is None:
476 if not cwd is None:
General Comments 0
You need to be logged in to leave comments. Login now