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

This commit is contained in:
Caleb Deveraux 2010-09-27 10:38:49 +08:00 committed by David Vierra
parent 2df01a56f9
commit d4a318c719

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)