Bug 1658679 - Fix Python 3 compatibility in RemoteAutomation.read_stdout(). r=jmaher

Differential Revision: https://phabricator.services.mozilla.com/D86958
This commit is contained in:
Bob Clary 2020-08-13 14:02:37 +00:00
Родитель 0d1dfebad8
Коммит 73ba237058
1 изменённых файлов: 1 добавлений и 0 удалений

Просмотреть файл

@ -272,6 +272,7 @@ class RemoteAutomation(object):
return False
if not newLogContent:
return False
newLogContent = six.ensure_str(newLogContent, errors='replace')
self.stdoutlen += len(newLogContent)