Switch feed from text to binary

This commit is contained in:
Scott Maxwell 2013-10-31 11:37:37 -07:00
parent 85ade33ae3
commit 04097cbb26
1 changed files with 1 additions and 1 deletions

View File

@ -978,7 +978,7 @@ class Channel (object):
def _feed_extended(self, m):
code = m.get_int()
s = m.get_text()
s = m.get_binary()
if code != 1:
self._log(ERROR, 'unknown extended_data type %d; discarding' % code)
return