mirror of https://github.com/python/cpython
#16112: platform.architecture does not correctly escape argument to /usr/bin/file. Fix original patch
This commit is contained in:
parent
69e7c9b1fd
commit
2699c9d248
|
@ -1045,8 +1045,8 @@ def _syscmd_file(target,default=''):
|
||||||
return default
|
return default
|
||||||
target = _follow_symlinks(target)
|
target = _follow_symlinks(target)
|
||||||
try:
|
try:
|
||||||
proc = subprocess.Popen(['file', '-b', '--', target],
|
proc = subprocess.Popen(['file', target],
|
||||||
stdout=subprocess.PIPE, stderr=subprocess.DEVNULL)
|
stdout=subprocess.PIPE, stderr=subprocess.STDOUT)
|
||||||
|
|
||||||
except (AttributeError,os.error):
|
except (AttributeError,os.error):
|
||||||
return default
|
return default
|
||||||
|
|
Loading…
Reference in New Issue