diff --git a/f2/cli/cli_commands.py b/f2/cli/cli_commands.py index fff7787..625e5c2 100644 --- a/f2/cli/cli_commands.py +++ b/f2/cli/cli_commands.py @@ -81,7 +81,8 @@ def get_command(self, ctx, cmd_name): logger.info("App: %s" % app_name) command = getattr(module, app_name) return command - except (ImportError, AttributeError): + except (ImportError, AttributeError) as e: + logger.error("Error: %s" % e) return None diff --git a/pyproject.toml b/pyproject.toml index 7a8f2d1..ea97769 100644 --- a/pyproject.toml +++ b/pyproject.toml @@ -36,7 +36,10 @@ dependencies = [ "importlib_resources==6.1.0", "m3u8==3.6.0", "pytest==7.4.2", - "pytest-asyncio==0.21.1" + "pytest-asyncio==0.21.1", + "browser_cookie3==0.19.1", + "pydantic==1.10.12", + "qrcode==7.4.2", ] [project.scripts]