From a96b4464769132403f9cfa72f488efdd778d357e Mon Sep 17 00:00:00 2001 From: Kévin Le Gouguec Date: Tue, 4 Apr 2023 00:06:11 +0200 Subject: Fix index generation when there are no next concerts yet --- helpers.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'helpers.py') diff --git a/helpers.py b/helpers.py index c46e652..8ff2b96 100644 --- a/helpers.py +++ b/helpers.py @@ -153,7 +153,7 @@ def split_concerts(concerts, threshold): cutoff = i break - return reversed(concerts[:cutoff]), concerts[cutoff:] + return concerts[:cutoff], concerts[cutoff:] _TOUCHUPS = ( -- cgit v1.2.3