From: Jean-Philippe ARGAUD Date: Wed, 4 Apr 2018 11:42:12 +0000 (+0200) Subject: Minor correction for Python 3 X-Git-Tag: V8_5_0rc1~5 X-Git-Url: http://git.salome-platform.org/gitweb/?a=commitdiff_plain;h=53c5202346ff85c09fb34dd0456a05c096475cc2;p=modules%2Fadao.git Minor correction for Python 3 --- 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