From 73d7377d0ba6c5ac768d547aaa957b48a6b1d46a Mon Sep 17 00:00:00 2001
From: Dominik George <nik@naturalnet.de>
Date: Fri, 22 May 2020 12:10:19 +0200
Subject: [PATCH] Fix exception message if app path is invalid

---
 menu_generator/utils.py | 4 ++--
 1 file changed, 2 insertions(+), 2 deletions(-)

diff --git a/menu_generator/utils.py b/menu_generator/utils.py
index d761bdc..871f35a 100755
--- a/menu_generator/utils.py
+++ b/menu_generator/utils.py
@@ -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"
             )
-- 
GitLab