From 6cf5deb21651b403d1719f18d2af77ee26537b8f Mon Sep 17 00:00:00 2001 From: Thomas Adamcik Date: Sun, 17 Jul 2011 23:52:32 +0200 Subject: [PATCH] Typo fix :) --- mopidy/utils/network.py | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) 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()