Fix CaptureManager.__repr__ (#6697)

This commit is contained in:
Daniel Hahler
2020-02-10 13:03:05 +01:00
committed by GitHub
parent b4ace46c42
commit f9dd58000a

View File

@@ -85,7 +85,7 @@ class CaptureManager:
self._capture_fixture = None # type: Optional[CaptureFixture]
def __repr__(self):
return "<CaptureManager _method={!r} _global_capturing={!r} _item_capture={!r}>".format(
return "<CaptureManager _method={!r} _global_capturing={!r} _capture_fixture={!r}>".format(
self._method, self._global_capturing, self._capture_fixture
)