From 8328d5888ba55a065edf0686ec4ee33d8781f891 Mon Sep 17 00:00:00 2001
From: Manuel Gunther <siebenkopf@googlemail.com>
Date: Wed, 30 Dec 2015 10:32:33 -0700
Subject: [PATCH] Added location of packages to be reported in
 ./bin/resources.py

---
 bob/bio/base/utils/resources.py | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/bob/bio/base/utils/resources.py b/bob/bio/base/utils/resources.py
index 693fdd59..01c5fa98 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):
-- 
GitLab