django-rosetta/rosetta/__init__.py

7 lines
166 B
Python
Raw Normal View History

2014-04-06 08:01:27 +00:00
VERSION = (0, 7, 5)
2011-06-16 09:25:15 +00:00
def get_version(svn=False, limit=3):
"Returns the version as a human-format string."
2012-01-16 09:36:58 +00:00
return '.'.join([str(i) for i in VERSION[:limit]])