From 752f592e5894b8116cdcfac592bef52add674f8f Mon Sep 17 00:00:00 2001 From: Tobias Genannt Date: Tue, 13 Apr 2021 15:50:23 +0200 Subject: [PATCH] Fixed Python f-string MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit Co-authored-by: Christian Mäder --- startup_scripts/200_vlan_groups.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/startup_scripts/200_vlan_groups.py b/startup_scripts/200_vlan_groups.py index eb61023..2a4a33d 100644 --- a/startup_scripts/200_vlan_groups.py +++ b/startup_scripts/200_vlan_groups.py @@ -28,7 +28,7 @@ for params in vlan_groups: if not ct: print( f"VLAN Group '{params['name']}': ContentType for " - + "app_label = '{app_label}' and model = '{model}' not found" + + f"app_label = '{app_label}' and model = '{model}' not found" ) continue params["scope_id"] = ct.model_class().objects.get(**query).id