From 88fce3405e54a09d0d9eb2dadde5524cd7b4be35 Mon Sep 17 00:00:00 2001 From: Franziska Kunsmann Date: Sun, 12 May 2024 19:42:04 +0200 Subject: [PATCH] bundles/netbox: fix f-string --- bundles/netbox/items.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/bundles/netbox/items.py b/bundles/netbox/items.py index 920aa78..afd1371 100644 --- a/bundles/netbox/items.py +++ b/bundles/netbox/items.py @@ -70,7 +70,7 @@ for upgrade_command in ( ): actions[f'netbox_upgrade_{upgrade_command.split()[0]}'] = { 'triggered': True, - 'command': '/opt/netbox/venv/bin/python /opt/netbox/src/netbox/manage.py {upgrade_command}', + 'command': f'/opt/netbox/venv/bin/python /opt/netbox/src/netbox/manage.py {upgrade_command}', 'needs': { f'action:{last_action}', },