Skip to content

Commit

Permalink
Added location of packages to be reported in ./bin/resources.py
Browse files Browse the repository at this point in the history
  • Loading branch information
siebenkopf committed Dec 30, 2015
1 parent 2f1d1a9 commit 8328d58
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion bob/bio/base/utils/resources.py
Original file line number Diff line number Diff line change
Expand Up @@ -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):
Expand Down

0 comments on commit 8328d58

Please sign in to comment.