From b1fffc3a1b2dbbb807213b85f538e59251b9bf35 Mon Sep 17 00:00:00 2001 From: Walter Purcaro Date: Fri, 28 Mar 2014 22:32:14 +0100 Subject: Remove bad whitespaces Merged vuolter/pyload@00288e6 --- module/gui/XMLParser.py | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) (limited to 'module/gui/XMLParser.py') diff --git a/module/gui/XMLParser.py b/module/gui/XMLParser.py index 5e3b7bf65..d9adc74f6 100644 --- a/module/gui/XMLParser.py +++ b/module/gui/XMLParser.py @@ -12,7 +12,7 @@ You should have received a copy of the GNU General Public License along with this program; if not, see . - + @author: mkaay """ from __future__ import with_statement @@ -33,7 +33,7 @@ class XMLParser(): self.mutex.unlock() self.loadData() self.root = self.xml.documentElement() - + def loadData(self): self.mutex.lock() f = self.file @@ -43,7 +43,7 @@ class XMLParser(): content = fh.read() self.xml.setContent(content) self.mutex.unlock() - + def saveData(self): self.mutex.lock() content = self.xml.toString() @@ -51,7 +51,7 @@ class XMLParser(): fh.write(content) self.mutex.unlock() return content - + def parseNode(self, node, ret_type="list"): if ret_type == "dict": childNodes = {} -- cgit v1.2.3