aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorGravatar jesopo2018-09-11 10:14:37 +0100
committerGravatar jesopo2018-09-11 10:14:37 +0100
commita8bf248d47c88c304eea96ce3eeb1553d8db7129 (patch)
tree71946d2e6d5823ec8a39c106a4c65e66c64312cf
parentForgot to import Utils in IRCServer (diff)
signature
Fix copypaste fail in Utils that meant we had no RFC1459_LOWER
-rw-r--r--Utils.py2
1 files changed, 1 insertions, 1 deletions
diff --git a/Utils.py b/Utils.py
index ac39825c..97e15b59 100644
--- a/Utils.py
+++ b/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)
RFC1459_UPPER = r'\[]~'
-RFC1459_UPPER = r'|{}^'
+RFC1459_LOWER = r'|{}^'
def remove_colon(s):
if s.startswith(":"):