Skip to content

Commit 61a4ef9

Browse files
vEpiphyteCisphyx
andauthored
Apply suggestions from code review
Co-authored-by: Cisphyx <[email protected]>
1 parent 64c67ad commit 61a4ef9

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

synapse/lib/httpapi.py

+1-1
Original file line numberDiff line numberDiff line change
@@ -1137,7 +1137,7 @@ async def get(self):
11371137
try:
11381138
valu, info = await self.cell.getPropNorm(propname, propvalu, typeopts=typeopts)
11391139
except s_exc.NoSuchProp:
1140-
return self.sendRestErr('NoSuchProp', 'The property {propname} does not exist.', status_code=HTTPStatus.NOT_FOUND)
1140+
return self.sendRestErr('NoSuchProp', f'The property {propname} does not exist.', status_code=HTTPStatus.NOT_FOUND)
11411141
except Exception as e:
11421142
return self.sendRestExc(e, status_code=HTTPStatus.BAD_REQUEST)
11431143
else:

0 commit comments

Comments
 (0)