From 8eb6657408a06f1a5e061e1b57efdbdc8c7ca06c Mon Sep 17 00:00:00 2001 From: Caleb Deveraux Date: Sun, 26 Sep 2010 20:38:49 -0600 Subject: [PATCH] Fix the 'No newline at end of file' weirdness in box.py --- box.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/box.py b/box.py index 282c34a..d27e8c0 100644 --- a/box.py +++ b/box.py @@ -104,4 +104,4 @@ class BoundingBox (object): return cmp( (a.origin, a.size), (b.origin, b.size) ) def __repr__(self): - return "BoundingBox({0}, {1})".format(self.origin, self.size) \ No newline at end of file + return "BoundingBox({0}, {1})".format(self.origin, self.size)