Kaydet (Commit) 5a2ae573 authored tarafından Your Name's avatar Your Name

remove timeout from wget

üst f696336d
......@@ -269,7 +269,7 @@ class Fetcher:
c.close()
def _get_wget(self):
return os.system("timeout \"{}\" busybox wget -c --user-agent \"{}\" \"{}\" -O \"{}\" 2>&1".format(self.timeout, self.useragent, self.url.get_uri(), self.partial_file))
return os.system("busybox wget -c --user-agent \"{}\" \"{}\" -O \"{}\" 2>&1".format(self.useragent, self.url.get_uri(), self.partial_file))
def _get_requests(self):
from requests import get
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment