diff --git a/mopidy/utils/network.py b/mopidy/utils/network.py index b7f808c9..b7cc144d 100644 --- a/mopidy/utils/network.py +++ b/mopidy/utils/network.py @@ -338,7 +338,7 @@ class LineProtocol(ThreadingActor): try: return line.encode(self.encoding) except UnicodeError: - logger.warning(u'Stoping actor due to encode problem, data ' + logger.warning(u'Stopping actor due to encode problem, data ' 'supplied by client was not valid %s', self.encoding) self.stop() @@ -351,7 +351,7 @@ class LineProtocol(ThreadingActor): try: return line.decode(self.encoding) except UnicodeError: - logger.warning(u'Stoping actor due to decode problem, data ' + logger.warning(u'Stopping actor due to decode problem, data ' 'supplied by client was not valid %s', self.encoding) self.stop()