From 54a11439b69a1de36b326fe93cb2e354af8c2daf Mon Sep 17 00:00:00 2001 From: yumoqing Date: Tue, 6 Aug 2024 15:52:10 +0800 Subject: [PATCH] bugfix --- appPublic/folderUtils.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/appPublic/folderUtils.py b/appPublic/folderUtils.py index ef4182e..5c8a121 100755 --- a/appPublic/folderUtils.py +++ b/appPublic/folderUtils.py @@ -15,7 +15,7 @@ import sys def temp_file(suffix='.txt'): x = tempfile.mkstemp(suffix=suffix) - os.close(x(0)) + os.close(x[0]) return x[1] def filepoolpath(root):