From: Guillaume Pellerin Date: Thu, 23 Jun 2022 15:04:35 +0000 (+0200) Subject: fix export X-Git-Tag: 2.7.1~41 X-Git-Url: https://git.parisson.com/?a=commitdiff_plain;h=ad863e85e842bdf953ad4e9fa3b5a319e2b76ba8;p=teleforma.git fix export --- 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()