summaryrefslogtreecommitdiffstats
path: root/Lib/getpass.py
diff options
context:
space:
mode:
Diffstat (limited to 'Lib/getpass.py')
-rw-r--r--Lib/getpass.py7
1 files changed, 1 insertions, 6 deletions
diff --git a/Lib/getpass.py b/Lib/getpass.py
index 2eb01fa..ce04566 100644
--- a/Lib/getpass.py
+++ b/Lib/getpass.py
@@ -166,12 +166,7 @@ except (ImportError, AttributeError):
try:
import msvcrt
except ImportError:
- try:
- from EasyDialogs import AskPassword
- except ImportError:
- getpass = fallback_getpass
- else:
- getpass = AskPassword
+ getpass = fallback_getpass
else:
getpass = win_getpass
else: