We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 89e5d16 commit 6fc6baaCopy full SHA for 6fc6baa
bin/uget-integrator
@@ -113,13 +113,13 @@ def download_all_links(data):
113
with open(cookie_filepath, 'w') as cookie_file:
114
cookie_file.write(cookie)
115
use_cookie_file = True
116
- except Exception as e:
+ except Exception:
117
pass
118
119
if use_cookie_file:
120
command.append("--http-cookie-file=" + cookie_filepath)
121
# Pass the parameters to uGet
122
- subprocess.call(command)
+ subprocess.Popen(command, creationflags=creation_flags).wait()
123
124
125
try:
0 commit comments