From d90bea126d9b083786847d408b0857388f2208d5 Mon Sep 17 00:00:00 2001 From: gfawcett Date: Thu, 14 Oct 2010 02:36:26 +0000 Subject: [PATCH] remove some debugging prints git-svn-id: svn://svn.open-ils.org/ILS-Contrib/servres/trunk@1040 6d9bc8c9-1ec2-4278-b937-99fde70a366f --- conifer/integration/uwindsor.py | 2 -- 1 file changed, 2 deletions(-) diff --git a/conifer/integration/uwindsor.py b/conifer/integration/uwindsor.py index 1cb84a4..5dfb8c0 100644 --- a/conifer/integration/uwindsor.py +++ b/conifer/integration/uwindsor.py @@ -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) -- 2.11.0