summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
-rw-r--r--samloader/fusclient.py2
1 files changed, 1 insertions, 1 deletions
diff --git a/samloader/fusclient.py b/samloader/fusclient.py
index 47e8686..fdb9f28 100644
--- a/samloader/fusclient.py
+++ b/samloader/fusclient.py
@@ -31,6 +31,6 @@ class FUSClient(object):
if start > 0:
headers["Range"] = "bytes={}-".format(start)
r = requests.get("http://cloud-neofussvr.sslcs.cdngc.net/NF_DownloadBinaryForMass.do",
- params={"file": filename}, headers=headers, stream=True)
+ params="file=" + filename, headers=headers, stream=True)
r.raise_for_status()
return r