remove some debugging prints
authorgfawcett <gfawcett@6d9bc8c9-1ec2-4278-b937-99fde70a366f>
Thu, 14 Oct 2010 02:36:26 +0000 (02:36 +0000)
committergfawcett <gfawcett@6d9bc8c9-1ec2-4278-b937-99fde70a366f>
Thu, 14 Oct 2010 02:36:26 +0000 (02:36 +0000)
git-svn-id: svn://svn.open-ils.org/ILS-Contrib/servres/trunk@1040 6d9bc8c9-1ec2-4278-b937-99fde70a366f

conifer/integration/uwindsor.py

index 1cb84a4..5dfb8c0 100644 (file)
@@ -85,14 +85,12 @@ def _item_status(bib_id):
                     bib_id, 1, 0)
         lib = desk = avail = 0
         for org, callnum, loc, stats in counts:
-            print (org, callnum, loc, stats)
             avail_here = stats.get(AVAILABLE, 0)
             anystatus_here = sum(stats.values())
             if loc == RESERVES_DESK_NAME:
                 desk += anystatus_here
                 avail += avail_here
             lib += anystatus_here
-        print (lib, desk, avail)
         return (lib, desk, avail)