From c466d17553d1ae9194cb174aaa432a911428f9df Mon Sep 17 00:00:00 2001 From: Athanasius Date: Mon, 12 Apr 2021 16:20:12 +0100 Subject: [PATCH] EDMarketConnector: Add CL arg to force use of edmc:// protocol This will be useful when running from source, i.e. in debugger, and wanting to work on the protocol code. --- EDMarketConnector.py | 5 +++++ 1 file changed, 5 insertions(+) diff --git a/EDMarketConnector.py b/EDMarketConnector.py index 95fff93c..317fef43 100755 --- a/EDMarketConnector.py +++ b/EDMarketConnector.py @@ -90,6 +90,11 @@ if __name__ == '__main__': # noqa: C901 action='store_true' ) + parser.add_argument('--force-edmc-protocol', + help='Force use of the edmc:// protocol handler. Error if not on Windows', + action='store_true', + ) + parser.add_argument('edmc', help='Callback from Frontier Auth', nargs='*'