mirror of
https://github.com/pulb/mailnag.git
synced 2026-05-06 18:35:40 +02:00
fix ascii range
This commit is contained in:
@@ -15,7 +15,7 @@ __license__ = "WTFPL v. 2"
|
||||
import base64
|
||||
import re
|
||||
|
||||
ascii_codes = set(range(0x20,0x7e))
|
||||
ascii_codes = set(range(0x20,0x7f))
|
||||
|
||||
def __get_ascii(text):
|
||||
pos = 0
|
||||
|
||||
Reference in New Issue
Block a user