aboutsummaryrefslogtreecommitdiffstats
path: root/hypervideo_dl/downloader/rtmp.py
diff options
context:
space:
mode:
Diffstat (limited to 'hypervideo_dl/downloader/rtmp.py')
-rw-r--r--hypervideo_dl/downloader/rtmp.py3
1 files changed, 2 insertions, 1 deletions
diff --git a/hypervideo_dl/downloader/rtmp.py b/hypervideo_dl/downloader/rtmp.py
index 6dca647..90f1acf 100644
--- a/hypervideo_dl/downloader/rtmp.py
+++ b/hypervideo_dl/downloader/rtmp.py
@@ -12,6 +12,7 @@ from ..utils import (
encodeFilename,
encodeArgument,
get_exe_version,
+ Popen,
)
@@ -26,7 +27,7 @@ class RtmpFD(FileDownloader):
start = time.time()
resume_percent = None
resume_downloaded_data_len = None
- proc = subprocess.Popen(args, stderr=subprocess.PIPE)
+ proc = Popen(args, stderr=subprocess.PIPE)
cursor_in_new_line = True
proc_stderr_closed = False
try: