From edd8c30023751540003ea654edaef5603444403e Mon Sep 17 00:00:00 2001 From: Nathan Chapman Date: Fri, 30 Dec 2022 12:58:43 -0700 Subject: [PATCH] Update locale settings --- src/storefront/views.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/storefront/views.py b/src/storefront/views.py index d854ae3..c83b333 100644 --- a/src/storefront/views.py +++ b/src/storefront/views.py @@ -57,7 +57,7 @@ from .cart import CartItem, Cart from .payments import CaptureOrder logger = logging.getLogger(__name__) -locale.setlocale(locale.LC_ALL, '') +locale.setlocale(locale.LC_ALL, 'en_CA.UTF-8') stripe.api_key = settings.STRIPE_API_KEY