summaryrefslogtreecommitdiffstats
path: root/webapp/django/__init__.py
blob: d0f42e562a8005df3f2ad103e11c6bc2102e8e75 (plain)
1
2
3
4
5
6
7
8
9
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