Forgot to remove the trailing zero

This commit is contained in:
mrhanky 2017-08-01 15:53:14 +02:00
parent ba9cdd2527
commit f5e47313e3
No known key found for this signature in database
GPG Key ID: 67D772C481CB41B8

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)