Pygame 1.6??? That was released in 2003! Hmm...well, if two distros are using that old of a version, there must be other distros with the same problem. That explains why it crashed saying that one of the methods on a pygame object didn't exist.
It's crashing trying to call the Surface's built-in copy method, Would you mind trying the following change and letting me know if it works? In display.py, make the following changes: line 19: "import os" to "import os, copy" line 120ish: "msg_surface = g_msg_bg.copy()" to "msg_surface = copy.copy(g_msg_bg)" That still works on my system, so if that makes it work for you, I'll make the change permanent. ~ Nathan On 2/5/06, Bryan Murdock <[EMAIL PROTECTED]> wrote: > On 2/4/06, Nathan <[EMAIL PROTECTED]> wrote: > > Is this on linux? What version of python are you using? Do you have > > pygame installed? > > Um yes, completely unhelpful of me. Sorry. I tried both Mandriva > 2005 and Ubuntu 5.10. They both have python 2.4 and pygame 1.6. > > Bryan > _______________________________________________ > Ldsoss mailing list > [email protected] > http://lists.ldsoss.org/mailman/listinfo/ldsoss > _______________________________________________ Ldsoss mailing list [email protected] http://lists.ldsoss.org/mailman/listinfo/ldsoss
