1
0
mirror of https://github.com/django/django.git synced 2025-04-15 21:04:36 +00:00

magic-removal: Removed remnant of init from [2400]

git-svn-id: http://code.djangoproject.com/svn/django/branches/magic-removal@2402 bcc190cf-cafb-0310-a4f2-bffc1f526a37
This commit is contained in:
Adrian Holovaty 2006-02-25 23:15:00 +00:00
parent e4ea91a0b5
commit e7c83b691b

View File

@ -1066,7 +1066,6 @@ DEFAULT_ACTION_MAPPING = {
'adminindex': get_admin_index,
'createsuperuser': createsuperuser,
'createcachetable' : createcachetable,
'init': init,
'inspectdb': inspectdb,
'install': install,
'installperms': installperms,
@ -1166,7 +1165,7 @@ def execute_from_command_line(action_mapping=DEFAULT_ACTION_MAPPING):
action_mapping[action](username, email, password)
elif action == 'shell':
action_mapping[action](options.plain is True)
elif action in ('init', 'syncdb', 'validate'):
elif action in ('syncdb', 'validate'):
action_mapping[action]()
elif action == 'inspectdb':
try: