Changeset 3751
- Timestamp:
- 09/11/06 13:42:56 (2 years ago)
- Files:
-
- django/trunk/django/core/management.py (modified) (5 diffs)
Legend:
- Unmodified
- Added
- Removed
- Modified
- Copied
- Moved
django/trunk/django/core/management.py
r3734 r3751 493 493 for app in models.get_apps(): 494 494 dispatcher.send(signal=signals.post_syncdb, sender=app, 495 app=app, created_models=created_models, 495 app=app, created_models=created_models, 496 496 verbosity=verbosity, interactive=interactive) 497 497 … … 553 553 from django.conf import settings, global_settings 554 554 555 user_settings = _module_to_dict(settings )555 user_settings = _module_to_dict(settings._target) 556 556 default_settings = _module_to_dict(global_settings) 557 557 … … 905 905 rel_query_name = f.related_query_name() 906 906 # If rel_name is none, there is no reverse accessor. 907 # (This only occurs for symmetrical m2m relations to self). 907 # (This only occurs for symmetrical m2m relations to self). 908 908 # If this is the case, there are no clashes to check for this field, as 909 909 # there are no reverse descriptors for this field. … … 1173 1173 else: 1174 1174 app_list = [get_app(app_label) for app_label in app_labels] 1175 1175 1176 1176 test_path = settings.TEST_RUNNER.split('.') 1177 1177 # Allow for Python 2.5 relative paths … … 1182 1182 test_module = __import__(test_module_name, [],[],test_path[-1]) 1183 1183 test_runner = getattr(test_module, test_path[-1]) 1184 1184 1185 1185 test_runner(app_list, verbosity) 1186 1186 test.help_doc = 'Runs the test suite for the specified applications, or the entire site if no apps are specified'
