Skip to content
Snippets Groups Projects
Unverified Commit 2ee4029e authored by Milton Lenis's avatar Milton Lenis Committed by GitHub
Browse files

Merge pull request #17 from Natureshadow/patch-1

Fix exception message if app path is invalid
parents 5a4149f3 73d7377d
No related branches found
No related tags found
No related merge requests found
......@@ -37,8 +37,8 @@ def clean_app_config(app_path):
return new_app
else: # pragma: no cover
raise ImproperlyConfigured(
"The application {0} is not in the configured apps or does" +
"not have the pattern app.apps.AppConfig".format(app_path)
"The application {0} is not in the configured apps or does".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