We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 4a0eb39 commit 5faf044Copy full SHA for 5faf044
msal/broker.py
@@ -4,6 +4,7 @@
4
from threading import Event
5
import json
6
import logging
7
+import sys
8
import time
9
import uuid
10
@@ -166,6 +167,8 @@ def _signin_interactively(
166
167
logger.warning("Using both select_account and login_hint is ambiguous. Ignoring login_hint.")
168
else:
169
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
172
if parent_window_handle is None:
173
# This fixes account picker hanging in IDE debug mode on some machines
174
params.set_additional_parameter("msal_gui_thread", "true") # Since pymsalruntime 0.8.1
0 commit comments