Fix copypaste fail in Utils that meant we had no RFC1459_LOWER
This commit is contained in:
parent
9236327366
commit
a8bf248d47
1 changed files with 1 additions and 1 deletions
2
Utils.py
2
Utils.py
|
@ -7,7 +7,7 @@ USER_AGENT = ("Mozilla/5.0 (Windows NT 6.1; WOW64) AppleWebKit/537.36 "
|
||||||
REGEX_HTTP = re.compile("https?://", re.I)
|
REGEX_HTTP = re.compile("https?://", re.I)
|
||||||
|
|
||||||
RFC1459_UPPER = r'\[]~'
|
RFC1459_UPPER = r'\[]~'
|
||||||
RFC1459_UPPER = r'|{}^'
|
RFC1459_LOWER = r'|{}^'
|
||||||
|
|
||||||
def remove_colon(s):
|
def remove_colon(s):
|
||||||
if s.startswith(":"):
|
if s.startswith(":"):
|
||||||
|
|
Loading…
Reference in a new issue