diff options
author | Alban Gruin | 2018-01-27 17:56:45 +0100 |
---|---|---|
committer | Alban Gruin | 2018-01-27 18:13:25 +0100 |
commit | c9388e29b2f9ee18a9e190683a8a33fb710684c5 (patch) | |
tree | 1d9402e02719110d3a0f15b74500b57afe0d2fd4 /management/commands/listtimetables.py | |
parent | 465c1c13f2e5a77f296de92d4b5b14cf319c68c5 (diff) |
PEP8
Diffstat (limited to 'management/commands/listtimetables.py')
-rw-r--r-- | management/commands/listtimetables.py | 5 |
1 files changed, 3 insertions, 2 deletions
diff --git a/management/commands/listtimetables.py b/management/commands/listtimetables.py index 25f641b..7892855 100644 --- a/management/commands/listtimetables.py +++ b/management/commands/listtimetables.py @@ -29,8 +29,9 @@ class Command(BaseCommand): sources = sources.order_by("id") for source in sources: - self.stdout.write("{0}\t: {1} (id: {2})".format(source.formatted_timetables, - source, source.id)) + self.stdout.write("{0}\t: {1} (id: {2})" + .format(source.formatted_timetables, + source, source.id)) self.stdout.write("") self.stdout.write(self.style.SUCCESS("Done.")) |