Skip to content

Commit ff47a13

Browse files
committed
EasyDialogs was removed in 3.x. fallback_getpass will always be the answer here.
1 parent 971dc01 commit ff47a13

File tree

1 file changed

+1
-6
lines changed

1 file changed

+1
-6
lines changed

Lib/getpass.py

+1-6
Original file line numberDiff line numberDiff line change
@@ -166,12 +166,7 @@ def getuser():
166166
try:
167167
import msvcrt
168168
except ImportError:
169-
try:
170-
from EasyDialogs import AskPassword
171-
except ImportError:
172-
getpass = fallback_getpass
173-
else:
174-
getpass = AskPassword
169+
getpass = fallback_getpass
175170
else:
176171
getpass = win_getpass
177172
else:

0 commit comments

Comments
 (0)