mirror of
https://github.com/django/django.git
synced 2025-10-28 16:16:12 +00:00
git-svn-id: http://code.djangoproject.com/svn/django/branches/newforms-admin@5475 bcc190cf-cafb-0310-a4f2-bffc1f526a37
9 lines
221 B
Python
9 lines
221 B
Python
VERSION = (0, 97, 'newforms-admin')
|
|
|
|
def get_version():
|
|
"Returns the version as a human-format string."
|
|
v = '.'.join([str(i) for i in VERSION[:-1]])
|
|
if VERSION[-1]:
|
|
v += '-' + VERSION[-1]
|
|
return v
|