Skip to content

Commit

Permalink
Fix exception message if app path is invalid
Browse files Browse the repository at this point in the history
  • Loading branch information
Natureshadow committed May 22, 2020
1 parent 7e1c772 commit 73d7377
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions menu_generator/utils.py
Original file line number Diff line number Diff line change
Expand Up @@ -32,6 +32,6 @@ 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 comments on commit 73d7377

Please sign in to comment.