From 3ba5fd2dc60841968ec8562e31a03a4d61641775 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Norman=20J=C3=A4ckel?= Date: Sun, 12 May 2013 00:56:40 +0200 Subject: [PATCH] Fixed bad typo in import users function --- openslides/participant/api.py | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/openslides/participant/api.py b/openslides/participant/api.py index b4d127dc2..c1e865e65 100644 --- a/openslides/participant/api.py +++ b/openslides/participant/api.py @@ -102,9 +102,9 @@ def import_users(csv_file): user.reset_password() count_success += 1 except csv.Error: - error_messages.appen(_('Import aborted because of severe errors in the input file.')) + error_messages.append(_('Import aborted because of severe errors in the input file.')) except UnicodeDecodeError: - error_messages.appen(_('Import file has wrong character encoding, only UTF-8 is supported!')) + error_messages.append(_('Import file has wrong character encoding, only UTF-8 is supported!')) return (count_success, error_messages)