the-xkcd-community / the-red-spider-project

Coding and xkcd combined, for fun!
http://the-xkcd-community.github.com/the-red-spider-project
Other
40 stars 33 forks source link

level_up works with Python>=2.7 #40

Closed ahammel closed 11 years ago

ahammel commented 11 years ago

Specificially, the command should work in any Python where:

>>> from __future__ import print_function

Is available. The tkinter module is capitalized differently in Pythons 2 and 3, but a try/except block deals with that.