summaryrefslogtreecommitdiff
path: root/django
diff options
context:
space:
mode:
authorRamiro Morales <cramm0@gmail.com>2014-05-11 23:15:59 -0300
committerRamiro Morales <cramm0@gmail.com>2014-05-11 23:15:59 -0300
commita9b7f31bfc0e40e0447a22bc4725e449c354f02b (patch)
treeb8e478f67dc8e79af97e375ca596f5eabda09aca /django
parentc1b412ebd62c124bd3752815b1c784e12ea07347 (diff)
Completed long overdue sqlinitialdata deprecation.
Diffstat (limited to 'django')
-rw-r--r--django/core/management/commands/sqlinitialdata.py8
1 files changed, 0 insertions, 8 deletions
diff --git a/django/core/management/commands/sqlinitialdata.py b/django/core/management/commands/sqlinitialdata.py
deleted file mode 100644
index 851baa86fe..0000000000
--- a/django/core/management/commands/sqlinitialdata.py
+++ /dev/null
@@ -1,8 +0,0 @@
-from django.core.management.base import AppCommand, CommandError
-
-
-class Command(AppCommand):
- help = "RENAMED: see 'sqlcustom'"
-
- def handle(self, *apps, **options):
- raise CommandError("This command has been renamed. Use the 'sqlcustom' command instead.")