From ea14faff1483552233f6691b88b21767ac756e38 Mon Sep 17 00:00:00 2001 From: Sven Augustin Date: Mon, 9 Feb 2026 14:13:31 +0100 Subject: [PATCH] the syntax of the screen panel cli was changed --- scam.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/scam.py b/scam.py index 66118b1..41e5683 100755 --- a/scam.py +++ b/scam.py @@ -225,7 +225,7 @@ class MainPanel(wx.Panel): def on_screenpanel(self, event): cam = self.camera - cmd = f"screen_panel -persist -cam={cam}" + cmd = f"screen_panel -persist -cam {cam}" print(cmd) subprocess.Popen(cmd.split(), start_new_session=True)