1
0
mirror of https://github.com/trezor/trezor-firmware.git synced 2024-11-22 07:28:10 +00:00

core/emulator: properly ignore inotify problems (fixes #854)

This commit is contained in:
matejcik 2020-02-17 12:33:38 +01:00
parent 2958a97c87
commit 1d41141a1f

View File

@ -18,7 +18,7 @@ from trezorlib._internal.emulator import CoreEmulator
try:
import inotify.adapters
except ImportError:
except Exception:
inotify = None