Changeset 2402
- Timestamp:
- 02/25/06 17:15:00 (3 years ago)
- Files:
Legend:
- Unmodified
- Added
- Removed
- Modified
- Copied
- Moved
django/branches/magic-removal/django/core/management.py
r2401 r2402 1067 1067 'createsuperuser': createsuperuser, 1068 1068 'createcachetable' : createcachetable, 1069 'init': init,1070 1069 'inspectdb': inspectdb, 1071 1070 'install': install, … … 1167 1166 elif action == 'shell': 1168 1167 action_mapping[action](options.plain is True) 1169 elif action in (' init', 'syncdb', 'validate'):1168 elif action in ('syncdb', 'validate'): 1170 1169 action_mapping[action]() 1171 1170 elif action == 'inspectdb':
