Fix the 'No newline at end of file' weirdness in box.py

This commit is contained in:
Caleb Deveraux 2010-09-26 20:38:49 -06:00
parent 33226cddb8
commit 8eb6657408

2
box.py
View File

@ -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)
return "BoundingBox({0}, {1})".format(self.origin, self.size)