summaryrefslogtreecommitdiff
path: root/saylol.py
diff options
context:
space:
mode:
Diffstat (limited to 'saylol.py')
-rw-r--r--saylol.py4
1 files changed, 3 insertions, 1 deletions
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):