From b4bfd82174e7f555f5bc58cff4de40bb3e467555 Mon Sep 17 00:00:00 2001 From: Stephan Telling Date: Mon, 27 Mar 2017 18:12:59 +0200 Subject: [PATCH] remove print from shop_tags.py --- src/shop/templatetags/shop_tags.py | 1 - 1 file changed, 1 deletion(-) diff --git a/src/shop/templatetags/shop_tags.py b/src/shop/templatetags/shop_tags.py index 7ca85fad..508a4f25 100644 --- a/src/shop/templatetags/shop_tags.py +++ b/src/shop/templatetags/shop_tags.py @@ -15,7 +15,6 @@ def currency(value): @register.filter def approxeur(value): - print(type(value)) try: return "{0:.2f} EUR".format(value / Decimal(7.5)) except ValueError: