Ticket #2112: json_api_patch.diff
File json_api_patch.diff, 453 bytes (added by , 13 years ago) |
---|
-
(a) json_api.py vs. (b) (current
a b 661 661 log.error("Reason: %s", result.getErrorMessage()) 662 662 return result 663 663 664 tmp_file = os.path.join(tempfile.gettempdir(), url.split("/")[-1]) 664 tempdir = tempfile.mkdtemp(prefix="delugeweb-") 665 tmp_file = os.path.join(tempdir, url.split("/")[-1]) 665 666 log.debug("filename: %s", tmp_file) 666 667 headers = {} 667 668 if cookie: