mirror of
https://github.com/python/cpython.git
synced 2025-08-04 17:08:35 +00:00
#16112: platform.architecture does not correctly escape argument to /usr/bin/file. Fix original patch
This commit is contained in:
parent
adc8211e00
commit
685fffa8f4
1 changed files with 2 additions and 2 deletions
|
@ -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")
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue