diff options
author | Jesus Cea <jcea@jcea.es> | 2012-10-05 05:21:42 +0200 |
---|---|---|
committer | Jesus Cea <jcea@jcea.es> | 2012-10-05 05:21:42 +0200 |
commit | 202e19c82d654703d726c98d21d569176c9a0cb8 (patch) | |
tree | dd8f31e1fe21dbd46d5c9247da3481e14c71687c /Lib/platform.py | |
parent | 64a403c1534eb95f615cc3e599c5908dd319a638 (diff) | |
download | cpython-202e19c82d654703d726c98d21d569176c9a0cb8.tar.gz |
#16112: platform.architecture does not correctly escape argument to /usr/bin/file. Fix original patch
Diffstat (limited to 'Lib/platform.py')
-rwxr-xr-x | Lib/platform.py | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/Lib/platform.py b/Lib/platform.py index f2dd5206e3..eedc11c518 100755 --- a/Lib/platform.py +++ b/Lib/platform.py @@ -997,8 +997,8 @@ def _syscmd_file(target,default=''): return default target = _follow_symlinks(target) try: - proc = subprocess.Popen(['file', '-b', '--', target], - stdout=subprocess.PIPE, stderr=dev_null) + proc = subprocess.Popen(['file', target], + stdout=subprocess.PIPE, stderr=subprocess.STDOUT) except (AttributeError,os.error): return default output = proc.communicate()[0].decode("latin-1") |