Skip to content
Snippets Groups Projects
Commit b3fe5731 authored by Erik Reid's avatar Erik Reid
Browse files

added missing f to f-string

parent 8547da58
No related branches found
No related tags found
No related merge requests found
......@@ -20,7 +20,7 @@ def build_service_interface_user_list(config):
k = k.decode('utf-8')
m = re.match('^netconf-interfaces:([^:]+):(.+)$', k)
if not m:
logger.error('invalid redis key: "{k}"')
logger.error(f'unexpected redis key: "{k}"')
continue # skip, rather than fail the entire update
router_name = m.group(1)
ifc_name = m.group(2)
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment