From ad863e85e842bdf953ad4e9fa3b5a319e2b76ba8 Mon Sep 17 00:00:00 2001 From: Guillaume Pellerin Date: Thu, 23 Jun 2022 17:04:35 +0200 Subject: [PATCH] fix export --- bin | 2 +- teleforma/management/commands/teleforma-export-wifi-accounts.py | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/bin b/bin index 52d01bc8..edd46124 160000 --- a/bin +++ b/bin @@ -1 +1 @@ -Subproject commit 52d01bc8d0ec34d96ae3751fa5709a8ae05066fd +Subproject commit edd46124d392ae27b88eab49d371286e8b6b9e2e diff --git a/teleforma/management/commands/teleforma-export-wifi-accounts.py b/teleforma/management/commands/teleforma-export-wifi-accounts.py index a2674c2d..db7b760c 100644 --- a/teleforma/management/commands/teleforma-export-wifi-accounts.py +++ b/teleforma/management/commands/teleforma-export-wifi-accounts.py @@ -42,6 +42,6 @@ class Command(BaseCommand): data.append(p.wifi_pass) data.append('\n') s = ','.join(data) - f.write(s.encode('utf8')) + f.write(s) f.close() -- 2.39.5