1
0
mirror of https://github.com/django/django.git synced 2024-11-19 07:54:07 +00:00
django/django/__init__.py
2008-08-08 22:05:36 +00:00

10 lines
302 B
Python

VERSION = (1, 0, 'alpha_2')
def get_version():
"Returns the version as a human-format string."
v = '.'.join([str(i) for i in VERSION[:-1]])
if VERSION[-1]:
from django.utils.version import get_svn_revision
v = '%s-%s-%s' % (v, VERSION[-1], get_svn_revision())
return v