PyWeek - Cubemaze fix
Cubemaze crashed on startup for me with an AssertionError. I fixed it by changing the following line in source/model/cameraman.py:if item.position != self.last_position:
to
if self.last_position is None or item.position != self.last_position:
— gcewing on 2010/09/01 08:10
Comments: (log in to comment)

By PyTM30 on 2010/09/01 12:00:
There's a fix posted in their diary as well.By tartley on 2010/09/01 12:43:
Thanks for the report gcweing! Sorry it gave you trouble. I failed to re-test under Python26 before I uploaded towards midnight, and was AKF the next day. :-(