Skip to content
Snippets Groups Projects
Unverified Commit 73d7377d authored by Nik | Klampfradler's avatar Nik | Klampfradler Committed by GitHub
Browse files

Fix exception message if app path is invalid

parent 7e1c7723
No related branches found
No related tags found
No related merge requests found
...@@ -32,6 +32,6 @@ def clean_app_config(app_path): ...@@ -32,6 +32,6 @@ def clean_app_config(app_path):
return new_app return new_app
else: # pragma: no cover else: # pragma: no cover
raise ImproperlyConfigured( raise ImproperlyConfigured(
"The application {0} is not in the configured apps or does" + "The application {0} is not in the configured apps or does".format(app_path) +
"not have the pattern app.apps.AppConfig".format(app_path) "not have the pattern app.apps.AppConfig"
) )
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment