diff options
Diffstat (limited to 'helpers.py')
| -rw-r--r-- | helpers.py | 2 |
1 files changed, 1 insertions, 1 deletions
@@ -153,7 +153,7 @@ def split_concerts(concerts, threshold): cutoff = i break - return reversed(concerts[:cutoff]), concerts[cutoff:] + return concerts[:cutoff], concerts[cutoff:] _TOUCHUPS = ( |
