Skip to content

Commit

Permalink
Merge pull request #17 from Natureshadow/patch-1
Browse files Browse the repository at this point in the history
Fix exception message if app path is invalid
  • Loading branch information
MiltonLn committed Nov 16, 2020
2 parents 5a4149f + 73d7377 commit 2ee4029
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 @@ -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"
)


Expand Down

0 comments on commit 2ee4029

Please sign in to comment.