summaryrefslogtreecommitdiffstats
path: root/tupkg/server/tupkgs
diff options
context:
space:
mode:
Diffstat (limited to 'tupkg/server/tupkgs')
-rwxr-xr-xtupkg/server/tupkgs4
1 files changed, 2 insertions, 2 deletions
diff --git a/tupkg/server/tupkgs b/tupkg/server/tupkgs
index b3a967c1..77aef568 100755
--- a/tupkg/server/tupkgs
+++ b/tupkg/server/tupkgs
@@ -36,7 +36,7 @@ config = ConfigParser.ConfigParser()
class ClientFile:
def __init__(self, filename, actual_size, actual_md5):
- self.pathname = confdict['incomingdir'] + filename
+ self.pathname = os.path.join(confdict['incomingdir'], filename)
self.filename = filename
self.fd = open(self.pathname, "a+b")
self.actual_size = actual_size
@@ -62,7 +62,7 @@ class ClientFile:
def finishDownload(self):
self.fd.close()
- newpathname = confdict['cachedir'] + self.filename
+ newpathname = os.path.join(confdict['cachedir'], self.filename)
os.rename(self.pathname, newpathname)
self.pathname = newpathname
self.fd = open(self.pathname, "a+b")