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

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