mirror of
https://github.com/blakeblackshear/frigate.git
synced 2026-03-22 02:18:32 +01:00
asyncio.SubprocessError does not exist — Python's asyncio module has no such class. The correct exception is subprocess.SubprocessError, which is available via the existing `import subprocess as sp` alias already present in this file. The invalid exception reference causes the except clause to raise a NameError rather than catching the intended exception.