mirror of
https://git.deluge-torrent.org/deluge
synced 2025-04-20 11:35:49 +00:00
Multi-platform fix for #1147.
This commit is contained in:
parent
3791fe2d2f
commit
8e5f8bb249
1 changed files with 1 additions and 4 deletions
|
@ -34,7 +34,6 @@
|
|||
#
|
||||
|
||||
import os
|
||||
import pwd
|
||||
import time
|
||||
import locale
|
||||
import shutil
|
||||
|
@ -165,9 +164,7 @@ class Upload(resource.Resource):
|
|||
'files': []
|
||||
})
|
||||
|
||||
tempdir = os.path.join(tempfile.gettempdir(), "delugeweb-%s" % pwd.getpwuid(os.getuid()).pw_name)
|
||||
if not os.path.isdir(tempdir):
|
||||
os.mkdir(tempdir)
|
||||
tempdir = tempfile.mkdtemp(prefix="delugeweb-")
|
||||
|
||||
filenames = []
|
||||
for upload in request.args.get("file"):
|
||||
|
|
Loading…
Add table
Reference in a new issue