| |||||||||||
PyWeek - Crash-bug in BouncySome players complained about a KeyError exception, at "del self.shape_to_actor_map[s.contents.id]" in the destroyActor fuction. If you get this error (I havent been able to reproduce it myself) you can fix it with a small try-except-block. Replace line 248 in ActorManager.py in the following way: before:del self.shape_to_actor_map[s.contents.id]after: try: del self.shape_to_actor_map[s.contents.id]
except: pass
— viblo on 2007/09/09 19:19 of Bouncy Comments: (log in to comment) |
Last Challenge
September 2008 [entries, ratings] Previous March 2008 [entries, ratings] > September 2007 [entries, ratings] April 2007 [entries, ratings] September 2006 [entries, ratings] March 2006 [entries, ratings] (June 2006) August 2005 [entries, ratings] Not logged in Login | ||||||||||
By viblo on 2007/09/09 19:29:
I almost forgot: Big thanks to simone and elias on #pyweek for pointing out this error and the not-so-clear readme text on how to run Bouncy (compile chipmunk) on linux!By simono on 2007/09/09 20:53:
I forgot to mention i have python 2.5 on linux. i compiled the chipmunk library from the zip.