From 342a89c7809cc6efd2b0f864793faa5920080057 Mon Sep 17 00:00:00 2001 From: Guillaume Pellerin Date: Tue, 13 Jun 2023 14:47:19 +0200 Subject: [PATCH] bugfix --- teleforma/management/commands/teleforma-export-wifi-accounts.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) 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) -- 2.39.5