1
0
mirror of https://github.com/django/django.git synced 2025-06-09 05:29:13 +00:00
django/django/__init__.py
2014-08-20 15:09:42 -05:00

8 lines
269 B
Python

VERSION = (1, 5, 9, 'final', 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)