Originally Posted by davidfor
That looks like an error you get when you run a Python 2 script using Python 3. Changing "iteritems" to "items" on line 136 of the script might fix it (I can't remember if the Python 3 dictionary has the method items). Or install Python 2 and run it under that.
|