1
0
mirror of https://github.com/django/django.git synced 2025-10-31 09:41:08 +00:00
Files
django/django/__init__.py
2013-08-13 11:12:07 -05:00

8 lines
268 B
Python

VERSION = (1, 6, 0, 'beta', 2)
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)