Delete errant prints

This commit is contained in:
Christopher Neugebauer 2016-08-25 21:01:32 +10:00
parent 00476498a8
commit d131b547f6

View file

@ -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