From b98572225500ecaaf74b3c2be37bf639859e090e Mon Sep 17 00:00:00 2001 From: James Tauber Date: Fri, 16 Aug 2013 13:52:07 -0400 Subject: [PATCH] fixed encoding xgettext seems to only like `utf-8` not `utf8` so string extraction was failing without this --- .../student/management/commands/anonymized_id_mapping.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/common/djangoapps/student/management/commands/anonymized_id_mapping.py b/common/djangoapps/student/management/commands/anonymized_id_mapping.py index 6156d4bf1d..f1ed5bdef9 100644 --- a/common/djangoapps/student/management/commands/anonymized_id_mapping.py +++ b/common/djangoapps/student/management/commands/anonymized_id_mapping.py @@ -1,4 +1,4 @@ -# -*- coding: utf8 -*- +# -*- coding: utf-8 -*- """Dump username,unique_id_for_user pairs as CSV. Give instructors easy access to the mapping from anonymized IDs to user IDs