Remove useless non-ascii character.

This commit is contained in:
Valentin Lorentz 2013-01-31 19:24:05 +01:00
parent 7588472f36
commit bab69bb31e

View File

@ -292,7 +292,7 @@ class Tokenizer(object):
def _handleToken(self, token): def _handleToken(self, token):
if token[0] == token[-1] and token[0] in self.quotes: if token[0] == token[-1] and token[0] in self.quotes:
token = token[1:-1] token = token[1:-1]
# FIXME: No need to tell you this is a hack. # FIXME: No need to tell you this is a hack.
# It has to handle both IRC commands and serialized configuration. # It has to handle both IRC commands and serialized configuration.
# #
# Whoever you are, if you make a single modification to this # Whoever you are, if you make a single modification to this