tjvr / kurt

Python library for reading/writing MIT's Scratch file format.
https://kurt.tjvr.org
GNU General Public License v3.0
86 stars 24 forks source link

Python < 2.7 doesn't support OrderedDict #14

Closed tjvr closed 10 years ago

tjvr commented 10 years ago

Fix (thanks to mobluse):

try:
    from collections import OrderedDict
except ImportError:
    # python 2.6 or earlier, use backport
    from ordereddict import OrderedDict