You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
10 lines
300 B
10 lines
300 B
|
13 years ago
|
VERSION = (1, 0, 'final')
|
||
|
|
|
||
|
|
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
|