django-rosetta/rosetta/__init__.py
2012-01-16 10:36:58 +01:00

7 lines
171 B
Python

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