Fixed Python f-string
Co-authored-by: Christian Mäder <cimnine@users.noreply.github.com>
This commit is contained in:
parent
f637de88f0
commit
752f592e58
|
@ -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
|
||||||
|
|
Loading…
Reference in New Issue