Project

General

Profile

Statistics
| Branch: | Revision:

root / env / lib / python2.7 / site-packages / south / management / commands / testserver.py @ d1a4905f

History | View | Annotate | Download (280 Bytes)

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