diff options
| author | 2018-11-13 16:02:26 +0000 | |
|---|---|---|
| committer | 2018-11-13 16:02:26 +0000 | |
| commit | 8b9062b942e93db587eb67e98767660c8ec4e482 (patch) | |
| tree | b7e52998dacf648038a54617fd9a73e7334df5b2 /modules/ducks.py | |
| parent | I was accidentally removing two characters from the start of :nick!user@host (diff) | |
| signature | ||
Better constifying of color/font chars
Diffstat (limited to 'modules/ducks.py')
| -rw-r--r-- | modules/ducks.py | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/modules/ducks.py b/modules/ducks.py index cb6ff4af..2de31dfa 100644 --- a/modules/ducks.py +++ b/modules/ducks.py @@ -174,7 +174,7 @@ class Module(ModuleManager.BaseModule): # rare! message = random.choice(DUCK_MESSAGE_RARE) duck = utils.irc.color(utils.irc.bold(duck + message), - utils.irc.COLOR_RED) + utils.consts.RED) else: # not rare! duck += random.choice(DUCK_MESSAGE) |
