From d131b547f695621c17c29d8c32bcab0a38cc143c Mon Sep 17 00:00:00 2001
From: Christopher Neugebauer <chrisjrn@gmail.com>
Date: Thu, 25 Aug 2016 21:01:32 +1000
Subject: [PATCH] Delete errant prints

---
 registrasion/staff_views.py | 4 ----
 1 file changed, 4 deletions(-)

diff --git a/registrasion/staff_views.py b/registrasion/staff_views.py
index d0debd78..50c2a18b 100644
--- a/registrasion/staff_views.py
+++ b/registrasion/staff_views.py
@@ -53,11 +53,9 @@ def report(view):
     displays a Report.
 
     '''
-    print "hello"
 
     @wraps(view)
     def inner_view(request, *a, **k):
-        print "lol"
         report = view(request, *a, **k)
 
         ctx = {
@@ -75,8 +73,6 @@ def items_sold(request):
     ''' Summarises the items sold and discounts granted for a given set of
     products, or products from categories. '''
 
-    print "beep"
-
     form = forms.ProductAndCategoryForm(request.GET)
 
     data = None