1
0
mirror of https://github.com/trezor/trezor-firmware.git synced 2024-12-17 11:58:13 +00:00

Merge pull request #812 from trezor/tsusanka/fix-watch

emu.py: remove frozen variable
This commit is contained in:
Tomas Susanka 2020-01-30 15:56:51 +01:00 committed by GitHub
commit 532973569a
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

View File

@ -144,8 +144,8 @@ def cli(
if command and not run_command:
raise click.ClickException("Extra arguments found. Did you mean to use -c?")
if watch and (command or debugger or frozen):
raise click.ClickException("Cannot use -w together with -c or -D or -F")
if watch and (command or debugger):
raise click.ClickException("Cannot use -w together with -c or -D")
if watch and inotify is None:
raise click.ClickException("inotify module is missing, install with pip")