Skip to content

Commit 73d7377

Browse files
authored
Fix exception message if app path is invalid
1 parent 7e1c772 commit 73d7377

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

menu_generator/utils.py

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -32,6 +32,6 @@ def clean_app_config(app_path):
3232
return new_app
3333
else: # pragma: no cover
3434
raise ImproperlyConfigured(
35-
"The application {0} is not in the configured apps or does" +
36-
"not have the pattern app.apps.AppConfig".format(app_path)
35+
"The application {0} is not in the configured apps or does".format(app_path) +
36+
"not have the pattern app.apps.AppConfig"
3737
)

0 commit comments

Comments
 (0)