Fix copypaste fail in Utils that meant we had no RFC1459_LOWER

This commit is contained in:
jesopo 2018-09-11 10:14:37 +01:00
parent 9236327366
commit a8bf248d47

View file

@ -7,7 +7,7 @@ USER_AGENT = ("Mozilla/5.0 (Windows NT 6.1; WOW64) AppleWebKit/537.36 "
REGEX_HTTP = re.compile("https?://", re.I)
RFC1459_UPPER = r'\[]~'
RFC1459_UPPER = r'|{}^'
RFC1459_LOWER = r'|{}^'
def remove_colon(s):
if s.startswith(":"):