Delete errant prints
This commit is contained in:
parent
00476498a8
commit
d131b547f6
1 changed files with 0 additions and 4 deletions
|
@ -53,11 +53,9 @@ def report(view):
|
||||||
displays a Report.
|
displays a Report.
|
||||||
|
|
||||||
'''
|
'''
|
||||||
print "hello"
|
|
||||||
|
|
||||||
@wraps(view)
|
@wraps(view)
|
||||||
def inner_view(request, *a, **k):
|
def inner_view(request, *a, **k):
|
||||||
print "lol"
|
|
||||||
report = view(request, *a, **k)
|
report = view(request, *a, **k)
|
||||||
|
|
||||||
ctx = {
|
ctx = {
|
||||||
|
@ -75,8 +73,6 @@ def items_sold(request):
|
||||||
''' Summarises the items sold and discounts granted for a given set of
|
''' Summarises the items sold and discounts granted for a given set of
|
||||||
products, or products from categories. '''
|
products, or products from categories. '''
|
||||||
|
|
||||||
print "beep"
|
|
||||||
|
|
||||||
form = forms.ProductAndCategoryForm(request.GET)
|
form = forms.ProductAndCategoryForm(request.GET)
|
||||||
|
|
||||||
data = None
|
data = None
|
||||||
|
|
Loading…
Reference in a new issue