blob: 990178637a6451af0d52d8b20000c82425b27d1b (
plain)
1
2
3
4
5
6
7
8
|
from django.core.management.commands import test
from south.management.commands import patch_for_test_db_setup
class Command(test.Command):
def handle(self, *args, **kwargs):
patch_for_test_db_setup()
super(Command, self).handle(*args, **kwargs)
|