Skip to content

Commit 00c1824

Browse files
committed
Small fix
1 parent a0bc828 commit 00c1824

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

Lib/getpass.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -140,7 +140,7 @@ def fallback_getpass(prompt='Password: ', stream=None, *, echo_char=None):
140140
if not stream:
141141
stream = sys.stderr
142142
print("Warning: Password input may be echoed.", file=stream)
143-
return _raw_input(prompt, stream, echo_char)
143+
return _raw_input(prompt, stream, echo_char=echo_char)
144144

145145

146146
def _check_echo_char(echo_char):

0 commit comments

Comments
 (0)