summaryrefslogtreecommitdiff
path: root/urwid/version.py
blob: e34283fca3815ad5a66ec4a9851f91324a1fc9fc (plain)
1
2
3
4
5

VERSION = (1, 3, 1)
__version__ = ''.join(['-.'[type(x) == int]+str(x) for x in VERSION])[1:]