From f1d815797f34bc479aa5ad8917a5c59758f19409 Mon Sep 17 00:00:00 2001 From: derrod Date: Thu, 16 Nov 2023 01:41:31 +0100 Subject: [PATCH] [cli] Fix --token not working --- legendary/cli.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/legendary/cli.py b/legendary/cli.py index 210ae59..06d6a8f 100644 --- a/legendary/cli.py +++ b/legendary/cli.py @@ -144,7 +144,7 @@ class LegendaryCLI: exchange_token = '' auth_code = '' - if not args.auth_code and not args.session_id: + if not args.auth_code and not args.session_id and not args.ex_token: # only import here since pywebview import is slow from legendary.utils.webview_login import webview_available, do_webview_login