Skip to content

Commit

Permalink
Repair issue #220.
Browse files Browse the repository at this point in the history
  • Loading branch information
kwlzn committed Mar 15, 2016
1 parent 118bd6d commit 198ce2f
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion pex/pex_builder.py
Original file line number Diff line number Diff line change
Expand Up @@ -211,7 +211,7 @@ def set_script(self, script):

raise self.InvalidExecutableSpecification(
'Could not find script %r in any distribution %s within PEX!' % (
script, ', '.join(self._distributions)))
script, ', '.join(str(d) for d in self._distributions)))

def set_entry_point(self, entry_point):
"""Set the entry point of this PEX environment.
Expand Down

0 comments on commit 198ce2f

Please sign in to comment.