Changeset 1960
- Timestamp:
- 01/14/06 18:04:24 (3 years ago)
- Files:
Legend:
- Unmodified
- Added
- Removed
- Modified
- Copied
- Moved
django/branches/magic-removal/django/core/management.py
r1921 r1960 463 463 INSTALLED_APPS += ('django.contrib.contenttypes',) 464 464 # Install django.contrib.contenttypes. The tests require Packages to 465 # to be installed. This ought to be fixed (tests should probably 465 # to be installed. This ought to be fixed (tests should probably 466 466 # install their dependencies) 467 467 contenttypes_app = models.get_app('contenttypes') … … 527 527 num_errors = get_validation_errors(s) 528 528 if num_errors: 529 sys.stderr.write("Error: %s couldn't be installed, because there were errors in your model:\n" % mod_name)529 sys.stderr.write("Error: %s couldn't be installed, because there were errors in your model:\n" % app_name) 530 530 s.seek(0) 531 531 sys.stderr.write(s.read())
