From ae44dade8005bcdcb2cb7328c70c428c2ed723f4 Mon Sep 17 00:00:00 2001 From: psrcek Date: Wed, 22 Jun 2016 15:21:28 +0200 Subject: fixed derp, should use math.ceil instead of +1 --- saylol.py | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/saylol.py b/saylol.py index e79edf1..fce356e 100644 --- a/saylol.py +++ b/saylol.py @@ -1,6 +1,7 @@ from time import time from helpers import * from random import randrange +import math lols = open_json_file("lol", []) timeout = 15 @@ -83,7 +84,7 @@ def on_lol_command(sender, command, label, args): if offset > len(lols): msg(sender, "&cNot a valid page (too high).") return True - msg(sender, " &9&nLol list page %s/%s" % (str(arg1 + 1), str(int(len(lols) / list_limit) + 1))) #"\t" symbol displays weirdly, hence the 4 spaces + msg(sender, " &9&nLol list page %s/%s" % (str(arg1 + 1), str(int(math.ceil(len(lols) / list_limit))))) #"\t" symbol displays weirdly, hence the 4 spaces for i in range(offset, min(offset + list_limit, len(lols))): msg(sender, "&a%s: &e%s" % (str(i).rjust(3), lols[i])) msg(sender, "") -- cgit v1.2.3