Skip to content

Commit

Permalink
Merge pull request #40 from sholsapp/support-python2.6.6
Browse files Browse the repository at this point in the history
Support Python 2.6
  • Loading branch information
wickman committed Jan 30, 2015
2 parents 8b180a1 + e0a6f40 commit d4fba94
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion pex/bin/pex.py
Original file line number Diff line number Diff line change
Expand Up @@ -54,7 +54,7 @@ def configure_clp():
'%prog builds a PEX (Python Executable) file based on the given specifications: '
'sources, requirements, their dependencies and other options')

parser = OptionParser(usage=usage, version='%prog {}'.format(__version__))
parser = OptionParser(usage=usage, version='%prog {0}'.format(__version__))

parser.add_option(
'--pypi', '--no-pypi',
Expand Down

0 comments on commit d4fba94

Please sign in to comment.