1
0
mirror of https://github.com/deadc0de6/dotdrop.git synced 2026-02-04 19:44:45 +00:00

fix return value

This commit is contained in:
deadc0de6
2018-02-07 16:11:29 +01:00
parent ef1fffd1a1
commit 6f4148c862

View File

@@ -39,7 +39,8 @@ def get_tmpdir():
def get_tmpfile():
return tempfile.mkstemp(prefix='dotdrop-')
(fd, path) = tempfile.mkstemp(prefix='dotdrop-')
return path
def remove(path):