django-rosetta/rosetta/__init__.py
2015-12-03 10:13:53 +01:00

6 lines
166 B
Python

VERSION = (0, 7, 8)
def get_version(svn=False, limit=3):
"Returns the version as a human-format string."
return '.'.join([str(i) for i in VERSION[:limit]])