diff options
| author | 2020-01-22 16:32:38 +0000 | |
|---|---|---|
| committer | 2020-01-22 16:32:38 +0000 | |
| commit | ef3bdbf9fc2768ff83932daa46010b976e3616db (patch) | |
| tree | 28b71891ef91fbade1dd40208fc3ffe8660f35f3 /modules | |
| parent | actually use `args` var (diff) | |
| signature | ||
strip all font before rainbowifying text
Diffstat (limited to 'modules')
| -rw-r--r-- | modules/rainbow.py | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/modules/rainbow.py b/modules/rainbow.py index 8be169e1..a7a174b9 100644 --- a/modules/rainbow.py +++ b/modules/rainbow.py @@ -32,6 +32,7 @@ class Module(ModuleManager.BaseModule): args = event["target"].buffer.get() if not args: raise utils.EventError("No line found to rainbowify") + args = utils.irc.strip_font(args) offset = random.randint(0, len(COLORS)) out = "" |
