django-rosetta/rosetta/__init__.py
2011-06-16 12:23:57 +02:00

12 lines
399 B
Python

VERSION = (0, 6, 2)
def get_version(svn=False, limit=3):
"Returns the version as a human-format string."
v = '.'.join([str(i) for i in VERSION[:limit]])
if svn and limit >= 3:
from django.utils.version import get_svn_revision
import os
svn_rev = get_svn_revision(os.path.dirname(__file__))
if svn_rev:
v = '%s.%s' % (v, svn_rev)
return v