remove print from shop_tags.py

This commit is contained in:
Stephan Telling 2017-03-27 18:12:59 +02:00
parent 489cc2f55f
commit b4bfd82174
No known key found for this signature in database
GPG key ID: D4892289F36ADA9B

View file

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