From 198ce2fbbc9968dfddc2f3028d47b9fa67c22338 Mon Sep 17 00:00:00 2001 From: Kris Wilson Date: Tue, 15 Mar 2016 11:20:56 -0700 Subject: [PATCH] Repair issue #220. --- pex/pex_builder.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/pex/pex_builder.py b/pex/pex_builder.py index 064112554..d3594de52 100644 --- a/pex/pex_builder.py +++ b/pex/pex_builder.py @@ -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.