Fixed Python f-string

Co-authored-by: Christian Mäder <cimnine@users.noreply.github.com>
This commit is contained in:
Tobias Genannt 2021-04-13 15:50:23 +02:00 committed by GitHub
parent f637de88f0
commit 752f592e58
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
1 changed files with 1 additions and 1 deletions

View File

@ -28,7 +28,7 @@ for params in vlan_groups:
if not ct: if not ct:
print( print(
f"VLAN Group '{params['name']}': ContentType for " 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 continue
params["scope_id"] = ct.model_class().objects.get(**query).id params["scope_id"] = ct.model_class().objects.get(**query).id