summaryrefslogtreecommitdiff
path: root/lib/python2.7/site-packages/south/hacks/__init__.py
blob: 8f28503ed6e51e5785e74e5d6b044aff1b3f2477 (plain)
1
2
3
4
5
6
7
8
9
10
"""
The hacks module encapsulates all the horrible things that play with Django
internals in one, evil place.
This top file will automagically expose the correct Hacks class.
"""

# Currently, these work for 1.0 and 1.1.
from south.hacks.django_1_0 import Hacks

hacks = Hacks()