diff --git a/Mainframe3270/py3270.py b/Mainframe3270/py3270.py index a129ab3..b4df156 100644 --- a/Mainframe3270/py3270.py +++ b/Mainframe3270/py3270.py @@ -530,8 +530,6 @@ def read_all_screen(self): # Stage 3: Replace Unicode box drawing range full_text = re.sub(r"[\u2500-\u257F]", "-", full_text) - # Stage 4: Replace any non-ASCII characters that might be box drawing - full_text = re.sub(r"[^\x20-\x7E]", "-", full_text, flags=re.UNICODE) return full_text def delete_field(self):