From 88723d21a40f80eae583e0c12ea70789be372975 Mon Sep 17 00:00:00 2001 From: Luke Rogers Date: Wed, 9 May 2012 13:26:52 +1200 Subject: [PATCH] Tuples! --- plugins/coin.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/plugins/coin.py b/plugins/coin.py index b56793c..21e05ec 100755 --- a/plugins/coin.py +++ b/plugins/coin.py @@ -11,7 +11,7 @@ def flip_simple(count): heads += 1 else: tails += 1 - return [heads, tails] + return heads, tails @hook.command(autohelp=False)