mirror of
https://git.deluge-torrent.org/deluge
synced 2025-04-20 11:35:49 +00:00
fix #1147 by appending -username to the delugeweb folder
This commit is contained in:
parent
e3fcaf0c1a
commit
41ef49a27e
1 changed files with 2 additions and 1 deletions
|
@ -34,6 +34,7 @@
|
|||
#
|
||||
|
||||
import os
|
||||
import pwd
|
||||
import time
|
||||
import locale
|
||||
import shutil
|
||||
|
@ -164,7 +165,7 @@ class Upload(resource.Resource):
|
|||
'files': []
|
||||
})
|
||||
|
||||
tempdir = os.path.join(tempfile.gettempdir(), "delugeweb")
|
||||
tempdir = os.path.join(tempfile.gettempdir(), "delugeweb-%s" % pwd.getpwuid(os.getuid()).pw_name)
|
||||
if not os.path.isdir(tempdir):
|
||||
os.mkdir(tempdir)
|
||||
|
||||
|
|
Loading…
Add table
Reference in a new issue