Fixes a bug involving non-standard starting indexes

This commit is contained in:
2025-08-12 20:50:00 -06:00
parent fd9a7bb4e9
commit 100e84e2c6

View File

@@ -116,7 +116,7 @@ def __main__():
if r and type(r[0]) == int:
start = args.start or comic.get_first_strip()
end = args.end or comic.get_latest_strip()
r = r[start - 1:end]
r = r[r.index(start):r.index(end) + 1]
try:
for index in reversed(r):