diff --git a/app/apps/common/templatetags/formats.py b/app/apps/common/templatetags/formats.py index 9a3492c..34d8e60 100644 --- a/app/apps/common/templatetags/formats.py +++ b/app/apps/common/templatetags/formats.py @@ -7,11 +7,9 @@ register = template.Library() @register.simple_tag def get_thousand_separator(): - print(get_format("THOUSAND_SEPARATOR")) return get_format("THOUSAND_SEPARATOR") @register.simple_tag def get_decimal_separator(): - print(get_format("DECIMAL_SEPARATOR")) return get_format("DECIMAL_SEPARATOR")