1
0
mirror of https://github.com/EDCD/EDMarketConnector.git synced 2025-04-17 17:42:20 +03:00

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.
This commit is contained in:
Athanasius 2021-04-12 16:20:12 +01:00
parent c18ffe4f3b
commit c466d17553

View File

@ -90,6 +90,11 @@ if __name__ == '__main__': # noqa: C901
action='store_true' 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', parser.add_argument('edmc',
help='Callback from Frontier Auth', help='Callback from Frontier Auth',
nargs='*' nargs='*'