From: gfawcett Date: Thu, 14 Oct 2010 02:36:26 +0000 (+0000) Subject: remove some debugging prints X-Git-Url: https://old-git.evergreen-ils.org/?a=commitdiff_plain;h=d90bea126d9b083786847d408b0857388f2208d5;p=Syrup.git remove some debugging prints git-svn-id: svn://svn.open-ils.org/ILS-Contrib/servres/trunk@1040 6d9bc8c9-1ec2-4278-b937-99fde70a366f --- 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)