From: Guillaume Pellerin Date: Tue, 13 Jun 2023 12:47:19 +0000 (+0200) Subject: bugfix X-Git-Tag: 2.9.0~65^2 X-Git-Url: https://git.parisson.com/?a=commitdiff_plain;h=342a89c7809cc6efd2b0f864793faa5920080057;p=teleforma.git bugfix --- diff --git a/teleforma/management/commands/teleforma-export-wifi-accounts.py b/teleforma/management/commands/teleforma-export-wifi-accounts.py index 9b246ae6..726daaca 100644 --- a/teleforma/management/commands/teleforma-export-wifi-accounts.py +++ b/teleforma/management/commands/teleforma-export-wifi-accounts.py @@ -23,7 +23,7 @@ class Command(BaseCommand): f = open(path, 'w') period = Period.objects.get(name=period_name) - s+ = "prenom,nom,login,pass\n" + s = "prenom,nom,login,pass\n" for user in User.objects.all(): profile = Profile.objects.filter(user=user)