From cf540af4f089c2480c6593e20a4c2e3e227a6ecf Mon Sep 17 00:00:00 2001 From: Justin Johnson Date: Wed, 10 Jan 2018 08:28:37 -0800 Subject: [PATCH] Fixing locale error --- edivorce/apps/core/templatetags/format_utils.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/edivorce/apps/core/templatetags/format_utils.py b/edivorce/apps/core/templatetags/format_utils.py index 0fa234ee..c9edc7b4 100644 --- a/edivorce/apps/core/templatetags/format_utils.py +++ b/edivorce/apps/core/templatetags/format_utils.py @@ -6,7 +6,7 @@ from django import template from django.utils.safestring import mark_safe from django.utils.timesince import timesince -locale.setlocale(locale.LC_ALL, 'en_CA.UTF-8') +locale.setlocale(locale.LC_ALL, '') register = template.Library()