From 1ff5333bc072169a8f2736a0f9751d5a3a30adbb Mon Sep 17 00:00:00 2001 From: pepeportela Date: Fri, 4 Aug 2017 18:16:39 +0200 Subject: [PATCH] Add space between arguments --- lms/djangoapps/certificates/views/webview.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/lms/djangoapps/certificates/views/webview.py b/lms/djangoapps/certificates/views/webview.py index 0204ff8565..f0f15d517b 100644 --- a/lms/djangoapps/certificates/views/webview.py +++ b/lms/djangoapps/certificates/views/webview.py @@ -98,7 +98,7 @@ def _update_certificate_context(context, user_certificate, platform_name): # Translators: The format of the date includes the full name of the month context['certificate_date_issued'] = _('{month} {day}, {year}').format( - month=strftime_localized(user_certificate.modified_date,"%B"), + month=strftime_localized(user_certificate.modified_date, "%B"), day=user_certificate.modified_date.day, year=user_certificate.modified_date.year )