diff options
| author | 2018-09-11 10:14:37 +0100 | |
|---|---|---|
| committer | 2018-09-11 10:14:37 +0100 | |
| commit | a8bf248d47c88c304eea96ce3eeb1553d8db7129 (patch) | |
| tree | 71946d2e6d5823ec8a39c106a4c65e66c64312cf | |
| parent | Forgot to import Utils in IRCServer (diff) | |
| signature | ||
Fix copypaste fail in Utils that meant we had no RFC1459_LOWER
| -rw-r--r-- | Utils.py | 2 |
1 files changed, 1 insertions, 1 deletions
@@ -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(":"): |
