fix small annoyances,

* mute exception on early shutdown
* sfx: give the utime thread a name
This commit is contained in:
ed 2024-05-09 14:17:53 +00:00
parent 5c1e23907d
commit 2c92dab165
3 changed files with 9 additions and 3 deletions

View file

@ -80,7 +80,7 @@ def run():
msg(" rsrc dir:", rsrc)
msg()
t = threading.Thread(target=utime, args=(rsrc,))
t = threading.Thread(target=utime, args=(rsrc,), name="utime")
t.daemon = True
t.start()