Skip to content

Commit 6dd9bc2

Browse files
authored
Fix compatibility with python3.9 (#43)
1 parent ea072e4 commit 6dd9bc2

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

imageio_ffmpeg/_parsing.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -43,7 +43,7 @@ def get_text(self, timeout=0):
4343
# Wait?
4444
if timeout > 0:
4545
etime = time.time() + timeout
46-
while self.isAlive() and time.time() < etime: # pragma: no cover
46+
while self.is_alive() and time.time() < etime: # pragma: no cover
4747
time.sleep(0.01)
4848
# Return str
4949
lines = b"\n".join(self._lines)

0 commit comments

Comments
 (0)