README moves to markdown
[nepi.git] / src / nepi / util / serializer.py
index 7347c5b..0e36a92 100644 (file)
@@ -3,9 +3,8 @@
 #    Copyright (C) 2013 INRIA
 #
 #    This program is free software: you can redistribute it and/or modify
-#    it under the terms of the GNU General Public License as published by
-#    the Free Software Foundation, either version 3 of the License, or
-#    (at your option) any later version.
+#    it under the terms of the GNU General Public License version 2 as
+#    published by the Free Software Foundation;
 #
 #    This program is distributed in the hope that it will be useful,
 #    but WITHOUT ANY WARRANTY; without even the implied warranty of
@@ -29,9 +28,8 @@ class ECSerializer(object):
             from nepi.util.parsers.xml_parser import ECXMLParser
             
             parser = ECXMLParser()
-            f = open(filepath, "r")
-            xml = f.read()
-            f.close()
+            with open(filepath, "r") as f:
+                xml = f.read()
 
             ec = parser.from_xml(xml)
 
@@ -53,9 +51,8 @@ class ECSerializer(object):
         if format == SFormats.XML:
             filepath = os.path.join(dirpath, "%s.xml" % filename)
             sec = self.serialize(ec, format = format)
-            f = open(filepath, "w")
-            f.write(sec)
-            f.close()
+            with open(filepath, "w") as f:
+                f.write(sec)
 
         return filepath