Commit f44c4a5d authored by Paul McMillan's avatar Paul McMillan
Browse files

Fixed #7198 -- Improved error message when missing models.py. Thanks...

Fixed #7198 -- Improved error message when missing models.py. Thanks Silver_Ghost and for the patch.


git-svn-id: http://code.djangoproject.com/svn/django/trunk@16876 bcc190cf-cafb-0310-a4f2-bffc1f526a37
parent 4f109fcb
Loading
Loading
Loading
Loading
+1 −0
Original line number Diff line number Diff line
@@ -146,6 +146,7 @@ class AppCache(object):
                    if mod is None:
                        if emptyOK:
                            return None
                        raise ImproperlyConfigured("App with label %s is missing a models.py module.")
                    else:
                        return mod
            raise ImproperlyConfigured("App with label %s could not be found" % app_label)