Thanks to visit codestin.com
Credit goes to github.com

Skip to content

Commit a4d8234

Browse files
committed
minor update
1 parent 98205cc commit a4d8234

1 file changed

Lines changed: 1 addition & 1 deletion

File tree

lib/core/common.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -872,5 +872,5 @@ def safeStringFormat(formatStr, params):
872872
return retVal
873873

874874
def sanitizeAsciiString(string):
875-
return "".join(char if ord(char) <= 128 else '?' for char in string)
875+
return "".join(char if ord(char) < 128 else '?' for char in string)
876876

0 commit comments

Comments
 (0)