Thanks to visit codestin.com Credit goes to github.com
We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 98205cc commit a4d8234Copy full SHA for a4d8234
1 file changed
lib/core/common.py
@@ -872,5 +872,5 @@ def safeStringFormat(formatStr, params):
872
return retVal
873
874
def sanitizeAsciiString(string):
875
- return "".join(char if ord(char) <= 128 else '?' for char in string)
+ return "".join(char if ord(char) < 128 else '?' for char in string)
876
0 commit comments