From 010107959d64e3251ad2bf98fc82566e6283d009 Mon Sep 17 00:00:00 2001 From: Thomas Farstrike Date: Fri, 16 May 2025 10:26:36 +0200 Subject: [PATCH] camtest: cleanup --- internal_filesystem/apps/com.example.camtest/assets/camtest.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/internal_filesystem/apps/com.example.camtest/assets/camtest.py b/internal_filesystem/apps/com.example.camtest/assets/camtest.py index 751f7a03..77696d29 100644 --- a/internal_filesystem/apps/com.example.camtest/assets/camtest.py +++ b/internal_filesystem/apps/com.example.camtest/assets/camtest.py @@ -258,7 +258,7 @@ else: print("camtest.py: no internal camera found, trying webcam on /dev/video0") try: import webcam - cam = webcam.init("/dev/video0") # Initialize webcam with device path + cam = webcam.init("/dev/video0") use_webcam = True except Exception as e: print(f"camtest.py: webcam exception: {e}")