Merge pull request #24 from VoIPCS/fix_unicode

Added ignore in decode of received lines
master
Randall Degges 2016-05-04 17:02:30 -07:00
commit 17e45b7a5c
1 changed files with 1 additions and 1 deletions

View File

@ -291,7 +291,7 @@ class Manager(object):
try:
lines = []
for line in self._sock:
line = line.decode('utf8')
line = line.decode('utf8','ignore')
# check to see if this is the greeting line
if not self.title and '/' in line and not ':' in line:
# store the title of the manager we are connecting to: