Fixed #5503 -- corrected a small typo in email example. Thanks, trey@ktrl.com.
[django.git] / django / __init__.py
blobde473fa4e9e5369ceb7ee0af77197e740007d93d
1 VERSION = (0, 97, 'pre')
3 def get_version():
4 "Returns the version as a human-format string."
5 v = '.'.join([str(i) for i in VERSION[:-1]])
6 if VERSION[-1]:
7 from django.utils.version import get_svn_revision
8 v = '%s-%s-%s' % (v, VERSION[-1], get_svn_revision())
9 return v