Commit 239683e7 authored by Reinout van Rees's avatar Reinout van Rees

just concatenate strings instead of %s

parent 0b419d2e
......@@ -944,7 +944,7 @@ def scripts(reqs, working_set, executable, dest,
# /EGG-INFO/scripts/.
if dist.metadata_isdir('scripts'):
for name in dist.metadata_listdir('scripts'):
contents = dist.get_metadata('scripts/%s' % name)
contents = dist.get_metadata('scripts/' + name)
distutils_scripts.append((name, contents))
else:
entry_points.append(req)
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment