Skip to content

Commit a6aed93

Browse files
committed
add comma to ValueError message
1 parent 749cc7d commit a6aed93

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
@@ -156,7 +156,7 @@ def _check_echo_char(echo_char):
156156
and echo_char.isascii()
157157
):
158158
raise ValueError("'echo_char' must be a single printable ASCII "
159-
f"character got: {echo_char!r}")
159+
f"character, got: {echo_char!r}")
160160

161161

162162
def _raw_input(prompt="", stream=None, input=None, echo_char=None):

0 commit comments

Comments
 (0)