You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
"namedtuple" is a Python 2.6 feature not present in 2.5. The Google App Engine environment requires Python 2.5.
File "test/battlenet/things.py", line 529, in init
Tree = collections.namedtuple('Tree', ('points', 'total',))
AttributeError: 'module' object has no attribute 'namedtuple'
If you could use something other than namedtuple that would be great! :)
The text was updated successfully, but these errors were encountered:
"namedtuple" is a Python 2.6 feature not present in 2.5. The Google App Engine environment requires Python 2.5.
File "test/battlenet/things.py", line 529, in init
Tree = collections.namedtuple('Tree', ('points', 'total',))
AttributeError: 'module' object has no attribute 'namedtuple'
If you could use something other than namedtuple that would be great! :)
The text was updated successfully, but these errors were encountered: