From f54e209c2f117c4fa56052c837b247d211681263 Mon Sep 17 00:00:00 2001 From: "Brian S. Stephan" Date: Tue, 18 Dec 2012 20:12:26 -0600 Subject: [PATCH] Pi: "unit circle" in the output message --- modules/Pi.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/modules/Pi.py b/modules/Pi.py index d8e29c2..575a6cb 100644 --- a/modules/Pi.py +++ b/modules/Pi.py @@ -109,7 +109,7 @@ class Pi(Module): finally: cur.close() return self.reply(connection, event, - "({0:.10f}, {1:.10f}) is {2}within the circle. "\ + "({0:.10f}, {1:.10f}) is {2}within the unit circle. "\ "pi is {5:.10f}. (i:{3:d} p:{4:d})".format(x, y, "" if inside else "not ", count_inside, count, pi))