Commit 2699c9d2 authored by Jesus Cea's avatar Jesus Cea

#16112: platform.architecture does not correctly escape argument to...

#16112: platform.architecture does not correctly escape argument to /usr/bin/file. Fix original patch
parent 69e7c9b1
......@@ -1045,8 +1045,8 @@ def _syscmd_file(target,default=''):
return default
target = _follow_symlinks(target)
try:
proc = subprocess.Popen(['file', '-b', '--', target],
stdout=subprocess.PIPE, stderr=subprocess.DEVNULL)
proc = subprocess.Popen(['file', target],
stdout=subprocess.PIPE, stderr=subprocess.STDOUT)
except (AttributeError,os.error):
return default
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment