We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 8472e36 commit 2455e65Copy full SHA for 2455e65
src/murfey/server/__init__.py
@@ -2292,7 +2292,7 @@ def feedback_callback(header: dict, message: dict) -> None:
2292
elif message["register"] == "data_collection":
2293
logger.debug(
2294
"Received message named 'data_collection' containing the following items:\n"
2295
- f"{', '.join([f'{key}: {sanitise(str(value))}' for key, value in message.items()])}"
+ f"{', '.join([f'{sanitise(key)}: {sanitise(str(value))}' for key, value in message.items()])}"
2296
)
2297
murfey_session_id = message["session_id"]
2298
ispyb_session_id = get_session_id(
0 commit comments