Skip to content

Commit 752f592

Browse files
tobiasgecimnine
andauthored
Fixed Python f-string
Co-authored-by: Christian Mäder <cimnine@users.noreply.github.com>
1 parent f637de8 commit 752f592

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

startup_scripts/200_vlan_groups.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -28,7 +28,7 @@
2828
if not ct:
2929
print(
3030
f"VLAN Group '{params['name']}': ContentType for "
31-
+ "app_label = '{app_label}' and model = '{model}' not found"
31+
+ f"app_label = '{app_label}' and model = '{model}' not found"
3232
)
3333
continue
3434
params["scope_id"] = ct.model_class().objects.get(**query).id

0 commit comments

Comments
 (0)