Skip to content

Commit

Permalink
Revert formatting style
Browse files Browse the repository at this point in the history
  • Loading branch information
FLorial Jean Baptiste committed Dec 8, 2023
1 parent 89040b7 commit 2ba07b8
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion mxcubecore/Command/exporter/ExporterClient.py
Original file line number Diff line number Diff line change
Expand Up @@ -127,7 +127,7 @@ def __process_return(self, ret):
ProtocolError
"""
if ret[:4] == RET_ERR:
msg = f"{self.get_server_object_name()} : {str(ret[4:])}"
msg = "{} : {}".format(self.get_server_object_name(), str(ret[4:]))
logging.getLogger("HWR").error(msg)
raise Exception(ret[4:])
if ret == RET_NULL:
Expand Down

0 comments on commit 2ba07b8

Please sign in to comment.