refs #708 fix incorrect usage of an f-string

pull/9/head
Natalia Serrano 2024-09-19 14:19:26 +02:00 committed by Natalia Serrano
parent 38815028a6
commit 82bf3a15f6
1 changed files with 1 additions and 1 deletions

View File

@ -97,7 +97,7 @@ class ServerWorker(object):
try:
operation = getattr(self, 'process_' + path[0])
except:
raise Exception ({ '_httpcode': 404, '_msg': '{path[0]}: method not found' })
raise Exception ({ '_httpcode': 404, '_msg': f'{path[0]}: method not found' })
return operation(path[1:], getParams, postParams, server)