mirror of
https://github.com/Hopiu/django-rosetta.git
synced 2026-05-01 02:14:49 +00:00
6 lines
170 B
Python
6 lines
170 B
Python
VERSION = (0, 7, 12)
|
|
|
|
|
|
def get_version(svn=False, limit=3):
|
|
"""Return the version as a human-format string."""
|
|
return '.'.join([str(i) for i in VERSION[:limit]])
|