mirror of
https://github.com/Hopiu/django-rosetta.git
synced 2026-03-16 21:30:24 +00:00
6 lines
159 B
Python
6 lines
159 B
Python
VERSION = (0, 10, 1)
|
|
|
|
|
|
def get_version(limit=3):
|
|
"""Return the version as a human-format string."""
|
|
return ".".join([str(i) for i in VERSION[:limit]])
|