Skip to content
Snippets Groups Projects
Commit 8328d588 authored by Manuel Günther's avatar Manuel Günther
Browse files

Added location of packages to be reported in ./bin/resources.py

parent 2f1d1a97
No related branches found
No related tags found
No related merge requests found
......@@ -192,7 +192,7 @@ def list_resources(keyword, strip=['dummy']):
for entry_point in sorted(entry_points, key=lambda p: p.dist.project_name):
if last_dist != str(entry_point.dist):
retval += "\n- %s: \n" % str(entry_point.dist)
retval += "\n- %s @ %s: \n" % (str(entry_point.dist), str(entry_point.dist.location))
last_dist = str(entry_point.dist)
if len(entry_point.attrs):
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment