Remove write to stdout
[ckanext-ga-report.git] / ckanext / ga_report / controller.py
blob:a/ckanext/ga_report/controller.py -> blob:b/ckanext/ga_report/controller.py
--- a/ckanext/ga_report/controller.py
+++ b/ckanext/ga_report/controller.py
@@ -217,7 +217,6 @@
         q = q.order_by("ga_stat.value::int desc")
 
         for entry in q.all():
-            print entry.key
             r = model.Session.query(model.Resource).filter(model.Resource.url==entry.key).first()
             if r:
                 c.downloads.append((r,entry.value))