Skip to content

Commit

Permalink
minor cleanup: mark variable as unused
Browse files Browse the repository at this point in the history
  • Loading branch information
scoder committed Oct 10, 2012
1 parent 7827b0c commit 7a583cb
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion buildlibxml.py
Expand Up @@ -292,7 +292,7 @@ def build_libxml2xslt(download_dir, build_dir,
include_ppc = True
if os.path.exists('/usr/bin/xcodebuild'):
pipe = subprocess.Popen(['/usr/bin/xcodebuild', '-version'], stdout=subprocess.PIPE, stderr=subprocess.PIPE)
out, err = pipe.communicate()
out, _ = pipe.communicate()
xcode_version = out.splitlines()[0].decode('utf8')
# Also parse only first digit, because 3.2.1 can't be parsed nicely
if (xcode_version.startswith('Xcode') and
Expand Down

0 comments on commit 7a583cb

Please sign in to comment.