Skip to content

Commit

Permalink
Fix open mode in setupegg.py wrapper script
Browse files Browse the repository at this point in the history
  • Loading branch information
dalcinl committed May 25, 2015
1 parent 62066a0 commit 10a74bb
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion setupegg.py
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
#!/usr/bin/env python
"""Wrapper to run setup.py using setuptools."""
import setuptools
with open('setup.py', 'rb') as f:
with open('setup.py') as f:
exec(compile(f.read(), 'setup.py', 'exec'))

0 comments on commit 10a74bb

Please sign in to comment.