diff options
Diffstat (limited to 'build-concerts.py')
| -rwxr-xr-x | build-concerts.py | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/build-concerts.py b/build-concerts.py index 9c8176a..e41dda1 100755 --- a/build-concerts.py +++ b/build-concerts.py @@ -130,9 +130,9 @@ def read_concerts(filename): def split_concerts(concerts, threshold): for i, c in enumerate(concerts): if c.time > threshold: - return concerts[:i], concerts[i:] + return reversed(concerts[:i]), concerts[i:] - return concerts, () + return reversed(concerts), () LOCALIZED_TEXT = { |
