From 21c3a7cf43b1300ca8b516ec98d35b8c9dddb8c3 Mon Sep 17 00:00:00 2001 From: tfmoraes Date: Fri, 14 Sep 2012 12:49:57 +0000 Subject: [PATCH] FIX: Resolved the problem with encoding on opening an invesalius 3 project in windows --- invesalius/project.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/invesalius/project.py b/invesalius/project.py index 9192ae3..b434673 100755 --- a/invesalius/project.py +++ b/invesalius/project.py @@ -203,7 +203,7 @@ class Project(object): return measures def SavePlistProject(self, dir_, filename): - dir_temp = tempfile.mkdtemp(filename) + dir_temp = tempfile.mkdtemp() filename_tmp = os.path.join(dir_temp, 'matrix.dat') project = { -- libgit2 0.21.2