From: Guillaume Pellerin Date: Mon, 28 Jul 2014 14:00:19 +0000 (+0200) Subject: fix indent X-Git-Tag: 1.1~336 X-Git-Url: https://git.parisson.com/?a=commitdiff_plain;h=8a8454e0447aa1c608e64f8edf847a75c0d1455d;p=teleforma.git fix indent --- diff --git a/teleforma/management/commands/teleforma-init-wifi-pass.py b/teleforma/management/commands/teleforma-init-wifi-pass.py index 56965602..31dcab03 100644 --- a/teleforma/management/commands/teleforma-init-wifi-pass.py +++ b/teleforma/management/commands/teleforma-init-wifi-pass.py @@ -17,10 +17,10 @@ def id_generator(size=6, chars=string.ascii_uppercase + string.digits): class Command(BaseCommand): help = "init all user wifi pass" - args = 'path' + args = 'path' def handle(self, *args, **options): - path = args[0] + path = args[0] f = open(path, 'w') for user in User.objects.all(): @@ -31,4 +31,4 @@ class Command(BaseCommand): profile.save() f.write(profile.wifi_login + ',' + profile.wifi_pass + '\n') - f.close() + f.close()