Changeset 3887
- Timestamp:
- 10/03/06 04:53:12 (2 years ago)
- Files:
-
- django/trunk/django/core/management.py (modified) (2 diffs)
Legend:
- Unmodified
- Added
- Removed
- Modified
- Copied
- Moved
django/trunk/django/core/management.py
r3874 r3887 1177 1177 runfcgi.args = '[various KEY=val options, use `runfcgi help` for help]' 1178 1178 1179 def test( verbosity, app_labels):1179 def test(app_labels, verbosity=1): 1180 1180 "Runs the test suite for the specified applications" 1181 1181 from django.conf import settings … … 1328 1328 elif action == 'test': 1329 1329 try: 1330 action_mapping[action]( int(options.verbosity), args[1:])1330 action_mapping[action](args[1:], int(options.verbosity)) 1331 1331 except IndexError: 1332 1332 parser.print_usage_and_exit()
