Forgot to remove the trailing zero

This commit is contained in:
mrhanky
2017-08-01 15:53:14 +02:00
parent ba9cdd2527
commit f5e47313e3

View File

@ -311,4 +311,4 @@ class Useless(DatabasePlugin):
# noinspection PyMethodMayBeStatic
def _rainbow(self, i, char):
return '\x030{0:02d}{1}'.format(RAINBOW[i % RAINBOW_LEN], char)
return '\x03{0:02d}{1}'.format(RAINBOW[i % RAINBOW_LEN], char)