mirror of https://github.com/sgoudham/Enso-Bot.git
You cannot select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
10 lines
278 B
Python
10 lines
278 B
Python
5 years ago
|
"""
|
||
|
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()
|