bundles/netbox: fix f-string

This commit is contained in:
Franzi 2024-05-12 19:42:04 +02:00
parent a17833698d
commit 88fce3405e
Signed by: kunsi
GPG key ID: 12E3D2136B818350

View file

@ -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}',
},