From 13ef4ccf56e55baebae1e2ee665cbbe47001995c Mon Sep 17 00:00:00 2001 From: Brandon King Date: Sat, 22 Aug 2009 00:28:26 +0000 Subject: [PATCH] No printing allowed; fixed. --- htsworkflow/frontend/inventory/views.py | 16 ++++++++-------- 1 file changed, 8 insertions(+), 8 deletions(-) diff --git a/htsworkflow/frontend/inventory/views.py b/htsworkflow/frontend/inventory/views.py index 1534bfe..f1d4607 100644 --- a/htsworkflow/frontend/inventory/views.py +++ b/htsworkflow/frontend/inventory/views.py @@ -299,43 +299,43 @@ def link_flowcell_and_device(request, flowcell, serial): if fc.lane_1_library not in lts.libraries.all(): lts.libraries.add(fc.lane_1_library) LIBRARY_UPDATED = True - print 1 + #print 1 if fc.lane_2_library not in lts.libraries.all(): lts.libraries.add(fc.lane_2_library) LIBRARY_UPDATED = True - print 2 + #print 2 if fc.lane_3_library not in lts.libraries.all(): lts.libraries.add(fc.lane_3_library) LIBRARY_UPDATED = True - print 3 + #print 3 if fc.lane_4_library not in lts.libraries.all(): lts.libraries.add(fc.lane_4_library) LIBRARY_UPDATED = True - print 4 + #print 4 if fc.lane_5_library not in lts.libraries.all(): lts.libraries.add(fc.lane_5_library) LIBRARY_UPDATED = True - print 5 + #print 5 if fc.lane_6_library not in lts.libraries.all(): lts.libraries.add(fc.lane_6_library) LIBRARY_UPDATED = True - print 6 + #print 6 if fc.lane_7_library not in lts.libraries.all(): lts.libraries.add(fc.lane_7_library) LIBRARY_UPDATED = True - print 7 + #print 7 if fc.lane_8_library not in lts.libraries.all(): lts.libraries.add(fc.lane_8_library) LIBRARY_UPDATED = True - print 8 + #print 8 # Save Changes lts.save() -- 2.30.2