fix_homebrew_paths_in_standalone_zip.py: Remove a superfluous call to open()

This commit is contained in:
Kamil Śliwak 2021-08-23 16:00:35 +02:00
parent 6b7857d56b
commit 941919e8ab

View File

@ -44,7 +44,6 @@ import subprocess
import sys
def readDependencies(fname):
with open(fname) as f:
with subprocess.Popen(['otool', '-L', fname], stdout=subprocess.PIPE) as o:
for line in o.stdout:
if line[0] == '\t':