From 4850eaf53400c7356cd311ededc2a0427aabd8b4 Mon Sep 17 00:00:00 2001 From: Tomas Susanka Date: Thu, 30 Jan 2020 14:47:11 +0000 Subject: [PATCH] emu.py: remove frozen variable --- core/emu.py | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/core/emu.py b/core/emu.py index 95432b8be..245be2de1 100755 --- a/core/emu.py +++ b/core/emu.py @@ -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")