diff options
| author | 2018-11-13 15:04:11 +0000 | |
|---|---|---|
| committer | 2018-11-13 15:04:11 +0000 | |
| commit | 16c4e1bfc6d521e857261fad3e4e5289e4337f10 (patch) | |
| tree | ae81ad28dcaab3d78cb7d6ee40eb8475e2363a4b /src/utils | |
| parent | Print MOTD in modules/print_activity.py (after caching it in (diff) | |
| signature | ||
I was accidentally removing two characters from the start of :nick!user@host
Diffstat (limited to 'src/utils')
| -rw-r--r-- | src/utils/irc.py | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/utils/irc.py b/src/utils/irc.py index 8160b524..8d3241be 100644 --- a/src/utils/irc.py +++ b/src/utils/irc.py @@ -105,7 +105,7 @@ def parse_line(line: str) -> IRCLine: if line[0] == ":": prefix_str, line = line[1:].split(" ", 1) - prefix = seperate_hostmask(prefix_str[1:]) + prefix = seperate_hostmask(prefix_str) args = [] command, sep, line = line.partition(" ") |
