From 5d00af8cedae09b66a0569e03635a04b0b188a1e Mon Sep 17 00:00:00 2001 From: PixelSergey Date: Tue, 31 May 2016 17:34:49 +0300 Subject: Fix checking for page 0 in saylol.py listing I hope I'm not making this too messy --- saylol.py | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) diff --git a/saylol.py b/saylol.py index 902e801..3fe2fe5 100644 --- a/saylol.py +++ b/saylol.py @@ -72,9 +72,11 @@ def on_lol_command(sender, command, label, args): arg1 = args[1] if len(args) > 1 else None if not arg1: arg1 = "1" - if not arg1.isdigit() or arg1 == "0": + if not arg1.isdigit(): msg(sender, "&cInvalid argument \"%s\"" % arg1) return True + if int(arg1) == 0: + msg(sender, "&cPage 0 does not exist") arg1 = int(arg1) - 1 offset = list_limit * arg1 if offset > len(lols): -- cgit v1.2.3