Changeset 8605
- Timestamp:
- 08/26/08 18:06:30 (10 months ago)
- Files:
-
- django/trunk/django/contrib/admin/validation.py (modified) (1 diff)
Legend:
- Unmodified
- Added
- Removed
- Modified
- Copied
- Moved
django/trunk/django/contrib/admin/validation.py
r8604 r8605 18 18 custom validation classmethod should be: def validate(cls, model). 19 19 """ 20 # Before we can introspect models, they need to be fully loaded so that 21 # inter-relations are set up correctly. We force that here. 22 models.get_apps() 23 20 24 opts = model._meta 21 25 validate_base(cls, model)
