From: Diane Trout Date: Sat, 2 Apr 2011 01:20:59 +0000 (-0700) Subject: Remove spurious debug print statements X-Git-Tag: 0.5.2~47 X-Git-Url: http://woldlab.caltech.edu/gitweb/?p=htsworkflow.git;a=commitdiff_plain;h=0f2fc6bc890b9486bd46b25d532635f67a9deafa Remove spurious debug print statements --- diff --git a/htsworkflow/frontend/experiments/views.py b/htsworkflow/frontend/experiments/views.py index b187363..342438d 100755 --- a/htsworkflow/frontend/experiments/views.py +++ b/htsworkflow/frontend/experiments/views.py @@ -130,10 +130,6 @@ def finishedEmail(request, pk): def flowcell_detail(request, flowcell_id): fc = get_object_or_404(FlowCell, flowcell_id=flowcell_id) - print unicode(fc.get_absolute_url()) - for lane in fc.lane_set.all(): - print unicode(lane.get_absolute_url()) - context = RequestContext(request, {'flowcell': fc})