ircutils: also map zfill'd versions of integers in mircColors

This commit is contained in:
GLolol 2014-12-21 14:19:31 -05:00
parent d06d744f11
commit 1b3a7b2d3e

View File

@ -663,6 +663,7 @@ for (k, v) in mircColors.items():
if k is not None: # Ignore empty string for None. if k is not None: # Ignore empty string for None.
sv = str(v) sv = str(v)
mircColors[sv] = sv mircColors[sv] = sv
mircColors[sv.zfill(2)] = sv
def standardSubstitute(irc, msg, text, env=None): def standardSubstitute(irc, msg, text, env=None):
"""Do the standard set of substitutions on text, and return it""" """Do the standard set of substitutions on text, and return it"""