aboutsummaryrefslogtreecommitdiff
path: root/ckandumper
diff options
context:
space:
mode:
Diffstat (limited to 'ckandumper')
-rwxr-xr-xckandumper3
1 files changed, 1 insertions, 2 deletions
diff --git a/ckandumper b/ckandumper
index d2aa8a3..51089b7 100755
--- a/ckandumper
+++ b/ckandumper
@@ -22,7 +22,7 @@
import asyncio
import argparse
import curses
-import sys, os, subprocess, json
+import sys, os, json
from urllib.parse import urlencode
class StatusLine:
@@ -86,7 +86,6 @@ class DownloadMultiple:
# Other opts: -q --show-progress
cmd = '/usr/bin/wget ' + self.limit_rate + ' -q --show-progress --progress=dot -c -O "' + local_filename + '" ' + url
- #proc = subprocess.call(cmd, shell=True)
proc = await asyncio.create_subprocess_shell(cmd,
stdout=asyncio.subprocess.PIPE,
stderr=asyncio.subprocess.PIPE)