blob: 35afc4bf4b6907bb6a2b44b8ddc443b7c62e1cd6 (
plain)
1
2
3
4
5
6
7
|
VERSION = (1, 6, 11, '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)
|