Django

Code

Changeset 6087

Show
Ignore:
Timestamp:
09/10/07 02:00:46 (10 months ago)
Author:
russellm
Message:

Removed code that was recasting major errors found during application import. If an application can't be imported, it now throws a full stack trace with the problem, rather than reporting the problem as a one line message.

Files:

Legend:

Unmodified
Added
Removed
Modified
Copied
Moved
  • django/trunk/django/db/models/loading.py

    r5922 r6087  
    5353                if app_name in self.handled: 
    5454                    continue 
    55                 try: 
    56                     self.load_app(app_name, True) 
    57                 except Exception, e: 
    58                     # Problem importing the app 
    59                     self.app_errors[app_name] = e 
     55                self.load_app(app_name, True) 
    6056            if not self.nesting_level: 
    6157                for app_name in self.postponed: