Clean up some useless prints

This commit is contained in:
Skia
2016-08-20 22:15:54 +02:00
parent dbf0653baf
commit 7797f87dd0
4 changed files with 2 additions and 5 deletions

View File

@ -59,8 +59,8 @@ class EbouticMain(TemplateView):
if request.user.is_in_group(g.name):
self.basket.add_product(p)
break
except Exception as e:
print(repr(e))
except:
pass
def del_product(self, request):
""" Delete a product from the basket """