[OLPC-Games] olpcgames SVGSprite bug + fix

Brian Jordan bcjordan at gmail.com
Wed Jul 23 05:38:22 EDT 2008


+ games at lists.laptop.org

2008/7/22 Alex Levenson <alev742 at gwu.edu>:
> Hello,
>
> I've been using olpcgames for some physics + puzzle games I'm writing. I
> just started using the SVGSprite class but I kept on getting an error when
> using it. I realized that in the SVGSprite class a module named 'svg' is
> imported, AND a local variable is named svg. So when you call svg.render()
> it tries it on the local variable (which is a string) and then that causess
> a crash.
> The fix is easy, change the line at the top of svgsprite.py from:
> from olpcgames import svg
> to:
> from olpcgames import svg as svgModule
> and then later in the code there is one reference to svg that needs to be
> changed to svgModule.
> Basically just a python scope issue, but I don't know who maintains
> olpcgames so I decided to just send this to devel.
>
> Thanks,
> Alex Levenson
>
> _______________________________________________
> Devel mailing list
> Devel at lists.laptop.org
> http://lists.laptop.org/listinfo/devel
>
>


More information about the Games mailing list