From e7c83b691ba17d65610a24fdb8bee806909d78af Mon Sep 17 00:00:00 2001 From: Adrian Holovaty Date: Sat, 25 Feb 2006 23:15:00 +0000 Subject: [PATCH] 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 --- django/core/management.py | 3 +-- 1 file changed, 1 insertion(+), 2 deletions(-) diff --git a/django/core/management.py b/django/core/management.py index 25596e7990..d2b05f0c2c 100644 --- a/django/core/management.py +++ b/django/core/management.py @@ -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: