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