django-rosetta/rosetta/__init__.py
2014-04-06 10:01:27 +02:00

6 lines
166 B
Python

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