From b6d7ffcf3550540819f42964b5078b4cd564c355 Mon Sep 17 00:00:00 2001 From: Bdale Garbee Date: Tue, 27 May 2025 12:40:18 -0600 Subject: [PATCH] need to import shlex to use it --- ui/app.py | 4 +--- 1 file changed, 1 insertion(+), 3 deletions(-) diff --git a/ui/app.py b/ui/app.py index 81cdcf6..47b676c 100755 --- a/ui/app.py +++ b/ui/app.py @@ -12,6 +12,7 @@ import iio import json import os import shutil +import shlex import signal import sys import threading @@ -69,9 +70,6 @@ class DataReader(threading.Thread): file.write(bytes(samples)) buffer.cancel() - # if the cancel isn't enough... - # if 'buffer' in locals(): - # iio.triggered_buffer_cleanup(buffer) cherrypy.log('DataReader thread #%s stopped' % self.ident) class Pyro(threading.Thread): -- 2.47.2