mirror of
https://github.com/Hopiu/django-rosetta.git
synced 2026-04-06 14:51:00 +00:00
7 lines
222 B
Python
7 lines
222 B
Python
VERSION = (0, 9, 1)
|
|
default_app_config = "rosetta.apps.RosettaAppConfig"
|
|
|
|
|
|
def get_version(svn=False, limit=3):
|
|
"""Return the version as a human-format string."""
|
|
return '.'.join([str(i) for i in VERSION[:limit]])
|