From a45af7a0a7fa7a04e98cdb5a38ec41010899d7ce Mon Sep 17 00:00:00 2001 From: "Brian S. Stephan" Date: Wed, 20 Oct 2010 11:57:31 -0500 Subject: [PATCH] Pi -> pi, fixing what I'm going to claim is a typo. --- modules/Pi.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/modules/Pi.py b/modules/Pi.py index 8d89471..9a64f22 100644 --- a/modules/Pi.py +++ b/modules/Pi.py @@ -63,7 +63,7 @@ class Pi(Module): self.config.set(self.__class__.__name__, "count_inside", str(count_inside)) self.config.set(self.__class__.__name__, "count", str(count)) - return self.reply(connection, replypath, "({0:.10f}, {1:.10f}) is {2}within the circle. Pi is {5:.10f} ({3:d}/{4:d}).".format(x, y, "" if inside else "not ", count_inside, count, pi)); + return self.reply(connection, replypath, "({0:.10f}, {1:.10f}) is {2}within the circle. pi is {5:.10f} ({3:d}/{4:d}).".format(x, y, "" if inside else "not ", count_inside, count, pi)); except NoOptionError, NoSectionError: pass # vi:tabstop=4:expandtab:autoindent