Ticket #2425: 2425.diff

File 2425.diff, 492 bytes (added by dev@…, 18 years ago)
  • management.py

     
    12731273        action_mapping[action](args[1:])
    12741274    else:
    12751275        from django.db import models
     1276       
     1277        # make sure that the models are valid
     1278        validate()
     1279       
    12761280        try:
    12771281            mod_list = [models.get_app(app_label) for app_label in args[1:]]
    12781282        except ImportError, e:
Back to Top