App Engine Python SDK version 1.7.4 (2)
[gae.git] / python / lib / django_1_4 / django / core / management / commands / sqlinitialdata.py
blobb9e2249c296b207dfaa517577c5da4d72eb17e98
1 from django.core.management.base import AppCommand, CommandError
3 class Command(AppCommand):
4 help = "RENAMED: see 'sqlcustom'"
6 def handle(self, *apps, **options):
7 raise CommandError("This command has been renamed. Use the 'sqlcustom' command instead.")