Skip to content

Commit 2ee4029

Browse files
authored
Merge pull request #17 from Natureshadow/patch-1
Fix exception message if app path is invalid
2 parents 5a4149f + 73d7377 commit 2ee4029

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
@@ -37,8 +37,8 @@ def clean_app_config(app_path):
3737
return new_app
3838
else: # pragma: no cover
3939
raise ImproperlyConfigured(
40-
"The application {0} is not in the configured apps or does" +
41-
"not have the pattern app.apps.AppConfig".format(app_path)
40+
"The application {0} is not in the configured apps or does".format(app_path) +
41+
"not have the pattern app.apps.AppConfig"
4242
)
4343

4444

0 commit comments

Comments
 (0)