django1/django/__init__.py

8 lines
269 B
Python
Raw Normal View History

2013-12-13 04:15:35 +08:00
VERSION = (1, 6, 2, 'alpha', 0)
def get_version(*args, **kwargs):
# Don't litter django/__init__.py with all the get_version stuff.
# Only import if it's actually called.
from django.utils.version import get_version
return get_version(*args, **kwargs)