diff --git a/src/authentic2_wallonie_connect/management/commands/wc-base-import.py b/src/authentic2_wallonie_connect/management/commands/wc-base-import.py index 82751c6..3c01165 100644 --- a/src/authentic2_wallonie_connect/management/commands/wc-base-import.py +++ b/src/authentic2_wallonie_connect/management/commands/wc-base-import.py @@ -325,7 +325,7 @@ class Command(BaseCommand): else: modified = False for key in defaults: - if getattr(user, key) != defaults[key]: + if getattr(user, key) != defaults[key] and key != "password": setattr(user, key, defaults[key]) modified = True if modified: