Fix test failure on Python 2. Ref #3314.

This commit is contained in:
Jason R. Coombs 2018-03-15 21:33:58 -04:00
parent 965a030564
commit b66019202e
1 changed files with 1 additions and 1 deletions

View File

@ -560,7 +560,7 @@ class SysCaptureBinary(SysCapture):
return res
class DontReadFromInput(object):
class DontReadFromInput(six.Iterator):
"""Temporary stub class. Ideally when stdin is accessed, the
capturing should be turned off, with possibly all data captured
so far sent to the screen. This should be configurable, though,