1
0
mirror of https://github.com/django/django.git synced 2025-06-04 11:09:13 +00:00
django/django/__init__.py
2008-08-15 02:26:50 +00:00

10 lines
301 B
Python

VERSION = (1, 0, 'beta_1')
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