summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorpsrcek <p.srcek@gmail.com>2016-06-22 15:35:52 +0200
committerGitHub <noreply@github.com>2016-06-22 15:35:52 +0200
commit5da7180bfd89e8fe3ac57a84ba3a2d027bdb1715 (patch)
treee2f953fd2dd7b8df1947b34d180569ac0fc2730b
parentae44dade8005bcdcb2cb7328c70c428c2ed723f4 (diff)
derp... integer division
-rw-r--r--saylol.py2
1 files changed, 1 insertions, 1 deletions
diff --git a/saylol.py b/saylol.py
index fce356e..0d74506 100644
--- a/saylol.py
+++ b/saylol.py
@@ -84,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(math.ceil(len(lols) / list_limit))))) #"\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) / float(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, "")