update send-results command and templates
[edumed.git] / wtem / management / commands / wlem_generate_keys.py
index 3fbf107..468641f 100644 (file)
@@ -8,6 +8,7 @@ from wtem.models import Submission
 class Command(BaseCommand):
 
     def handle(self, *ids, **options):
+        return  # typo would be disastrous
         new = 0
         skipped = 0
 
@@ -17,7 +18,7 @@ class Command(BaseCommand):
 
         for wlem_contact in query:
             if not Submission.objects.filter(email=wlem_contact.contact).exists():
-                first_name, last_name = wlem_contact.body['nazwisko'].split(' ')
+                first_name, last_name = wlem_contact.body['nazwisko'].split()
                 args = {
                     'email': wlem_contact.contact,
                     'first_name': first_name,