#16112: platform.architecture does not correctly escape argument to /usr/bin/file. Fix original patch
diff --git a/Lib/platform.py b/Lib/platform.py
index f2dd520..eedc11c 100755
--- a/Lib/platform.py
+++ b/Lib/platform.py
@@ -997,8 +997,8 @@
         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")