From 53c5202346ff85c09fb34dd0456a05c096475cc2 Mon Sep 17 00:00:00 2001 From: Jean-Philippe ARGAUD Date: Wed, 4 Apr 2018 13:42:12 +0200 Subject: [PATCH] Minor correction for Python 3 --- src/daComposant/daCore/Interfaces.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/daComposant/daCore/Interfaces.py b/src/daComposant/daCore/Interfaces.py index b0eb457..0184a30 100644 --- a/src/daComposant/daCore/Interfaces.py +++ b/src/daComposant/daCore/Interfaces.py @@ -73,7 +73,7 @@ class GenericCaseViewer(object): __text +="\n" if __filename is not None: __file = os.path.abspath(__filename) - __fid = open(__file,"w",0) + __fid = open(__file,"w") __fid.write(__text) __fid.close() return __text -- 2.39.2