Sun 21 Dec 2014 10:29:46 PM UTC, original submission:
I'm seeing the following error when running the pong.py example on Debian 7.7.
info:
python 2.7.3
pygame 1.9.1
SGE 0.14
python-six 1.1.0
error:
[jeff@debian-vm sge-test]$ ./pong.py
Traceback (most recent call last):
File "./pong.py", line 22, in <module>
import sge
File "/home/jeff/scripts/pygame/sge-test/sge/__init__.py", line 482, in <module>
from sge.Game import Game
File "/home/jeff/scripts/pygame/sge-test/sge/Game.py", line 43, in <module>
class Game(object):
File "/home/jeff/scripts/pygame/sge-test/sge/Game.py", line 1217, in Game
color=sge.Color("black"), halign=sge.ALIGN_LEFT,
File "/home/jeff/scripts/pygame/sge-test/sge/Color.py", line 104, in _init_
self.alpha = 255
File "/home/jeff/scripts/pygame/sge-test/sge/Color.py", line 160, in alpha
self._a = _check_input(value)
File "/home/jeff/scripts/pygame/sge-test/sge/Color.py", line 36, in _check_input
if value in six.moves.range(256):
AttributeError: '_MovedItems' object has no attribute 'range'
|