mirror of
https://github.com/evennia/evennia.git
synced 2026-03-28 10:37:16 +01:00
Removed clearing of extended 127-159 range, as per #551.
This commit is contained in:
parent
6ae2ca6901
commit
ffa90e1a03
1 changed files with 1 additions and 1 deletions
|
|
@ -1097,7 +1097,7 @@ class lazy_property(object):
|
|||
return value
|
||||
|
||||
_STRIP_ANSI = None
|
||||
_RE_CONTROL_CHAR = re.compile('[%s]' % re.escape(''.join([unichr(c) for c in range(0,32) + range(127,160)])))
|
||||
_RE_CONTROL_CHAR = re.compile('[%s]' % re.escape(''.join([unichr(c) for c in range(0,32)])))# + range(127,160)])))
|
||||
def escape_control_sequences(string):
|
||||
"""
|
||||
remove non-print text sequences from string.
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue