summaryrefslogtreecommitdiff
path: root/django/__init__.py
blob: de473fa4e9e5369ceb7ee0af77197e740007d93d (plain)
1
2
3
4
5
6
7
8
9
VERSION = (0, 97, 'pre')

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