diff --git a/bob/bio/base/utils/resources.py b/bob/bio/base/utils/resources.py index 693fdd5980cf5ce970af7efed9a97ec191a69a58..01c5fa988c42f31be8188ecdc53a87cb7f230462 100644 --- a/bob/bio/base/utils/resources.py +++ b/bob/bio/base/utils/resources.py @@ -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):