diff options
Diffstat (limited to 'environment.py')
-rw-r--r-- | environment.py | 5 |
1 files changed, 3 insertions, 2 deletions
diff --git a/environment.py b/environment.py index b58af2a..905f200 100644 --- a/environment.py +++ b/environment.py @@ -215,8 +215,9 @@ class Environment(): for compiler in compilers: for arg in ['--version', '-V']: try: - p = subprocess.Popen([compiler] + [arg], stdout=subprocess.PIPE, - stderr=subprocess.PIPE) + p = subprocess.Popen([compiler] + [arg], + stdout=subprocess.PIPE, + stderr=subprocess.PIPE) except OSError: continue (out, err) = p.communicate() |