Skip to content

Commit 5faf044

Browse files
committed
Experimental. May wire it up with app_name parameter.
1 parent 4a0eb39 commit 5faf044

File tree

1 file changed

+3
-0
lines changed

1 file changed

+3
-0
lines changed

msal/broker.py

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -4,6 +4,7 @@
44
from threading import Event
55
import json
66
import logging
7+
import sys
78
import time
89
import uuid
910

@@ -166,6 +167,8 @@ def _signin_interactively(
166167
logger.warning("Using both select_account and login_hint is ambiguous. Ignoring login_hint.")
167168
else:
168169
logger.warning("prompt=%s is not supported by this module", prompt)
170+
171+
params.set_additional_parameter("msal_accounts_control_title", sys.argv[0]) # Since pymsalruntime 0.13.2
169172
if parent_window_handle is None:
170173
# This fixes account picker hanging in IDE debug mode on some machines
171174
params.set_additional_parameter("msal_gui_thread", "true") # Since pymsalruntime 0.8.1

0 commit comments

Comments
 (0)