X-Git-Url: http://git.onelab.eu/?a=blobdiff_plain;f=src%2Fnepi%2Fresources%2Fall%2Fcollector.py;h=4729e0153b7774d4973b4e4d22bbc6d0eed0a753;hb=6285ca51026efb69642eea9dfc7c480e722d84a9;hp=4837feb612fc90f847d86383a839fba59a29ef20;hpb=23d041fe2f0d9badf6d637009e2d42a4794325c1;p=nepi.git diff --git a/src/nepi/resources/all/collector.py b/src/nepi/resources/all/collector.py index 4837feb6..4729e015 100644 --- a/src/nepi/resources/all/collector.py +++ b/src/nepi/resources/all/collector.py @@ -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 @@ -78,7 +77,7 @@ class Collector(ResourceManager): msg = "No traceName was specified" self.error(msg) - raise RuntimeError, msg + raise RuntimeError(msg) self._store_path = self.ec.run_dir @@ -118,9 +117,8 @@ class Collector(ResourceManager): try: result = self.ec.trace(rm.guid, trace_name) - f = open(fpath, "w") - f.write(result) - f.close() + with open(fpath, "w") as f: + f.write(result) except: import traceback err = traceback.format_exc()