refs #708 fix incorrect usage of an f-string

pull/9/head
Natalia Serrano 2024-09-19 14:19:26 +02:00
parent a5d0da2403
commit e5d2904cb9
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)