diff --git a/openslides/users/management/commands/createopenslidesuser.py b/openslides/users/management/commands/createopenslidesuser.py index 56419d524..da4b25b3a 100644 --- a/openslides/users/management/commands/createopenslidesuser.py +++ b/openslides/users/management/commands/createopenslidesuser.py @@ -35,6 +35,7 @@ class Command(BaseCommand): user_data = { 'first_name': options['first_name'], 'last_name': options['last_name'], + 'default_password': options['password'], } user = User.objects.create_user(options['username'], options['password'], **user_data) if options['groups_id'].isdigit():