diff --git a/Lib/platform.py b/Lib/platform.py index 10b04bde95e..20b91752f31 100755 --- a/Lib/platform.py +++ b/Lib/platform.py @@ -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