From 825bf46fc0de3162e6695f8da60fa1e7b8cbc0d4 Mon Sep 17 00:00:00 2001 From: mutantmonkey Date: Tue, 20 Mar 2012 22:01:32 -0400 Subject: [PATCH] fix .yi --- modules/clock.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/modules/clock.py b/modules/clock.py index 82c3047..60576bb 100644 --- a/modules/clock.py +++ b/modules/clock.py @@ -256,7 +256,7 @@ beats.commands = ['beats'] beats.priority = 'low' def divide(input, by): - return (input / by), (input % by) + return (input // by), (input % by) def yi(phenny, input): """Shows whether it is currently yi or not."""