diff options
Diffstat (limited to 'core/management/commands/dummycmd.py')
-rw-r--r-- | core/management/commands/dummycmd.py | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/core/management/commands/dummycmd.py b/core/management/commands/dummycmd.py index 3628cf8..6e13011 100644 --- a/core/management/commands/dummycmd.py +++ b/core/management/commands/dummycmd.py @@ -1,10 +1,10 @@ import os from optparse import make_option -from django.db import connection +from django.contrib.auth.models import User from django.core import management from django.core.management.base import BaseCommand, CommandError -from django.contrib.auth.models import User +from django.db import connection import settings |