From aa753b8e7e52b5dbac6ccd0639d9b601dd8f1def Mon Sep 17 00:00:00 2001 From: Markus Zolliker Date: Thu, 12 Feb 2026 12:53:51 +0100 Subject: [PATCH] followup fix to 38071: class missing 'frappy.' prefix in 38071 get_class was modified not to prefix 'frappy.' when path does not start with 'frappy'. Change-Id: I528ed552a2af693794ce7f92c2e7dc43f4118f27 Reviewed-on: https://forge.frm2.tum.de/review/c/secop/frappy/+/38435 Tested-by: Jenkins Automated Tests Reviewed-by: Georg Brandl --- frappy/server.py | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/frappy/server.py b/frappy/server.py index a3537647..1e3291a0 100644 --- a/frappy/server.py +++ b/frappy/server.py @@ -59,8 +59,8 @@ except ImportError: class Server: INTERFACES = { - 'tcp': 'protocol.interface.tcp.TCPServer', - 'ws': 'protocol.interface.ws.WSServer', + 'tcp': 'frappy.protocol.interface.tcp.TCPServer', + 'ws': 'frappy.protocol.interface.ws.WSServer', } _restart = True