summaryrefslogtreecommitdiffstats
path: root/module/gui/XMLParser.py
diff options
context:
space:
mode:
authorGravatar Walter Purcaro <vuolter@gmail.com> 2014-03-28 22:32:14 +0100
committerGravatar Walter Purcaro <vuolter@gmail.com> 2014-06-28 02:47:08 +0200
commitb1fffc3a1b2dbbb807213b85f538e59251b9bf35 (patch)
treec373d3234dcb474bb424371a3d89341bed8a9e07 /module/gui/XMLParser.py
parentPlugins licensing doc (diff)
downloadpyload-b1fffc3a1b2dbbb807213b85f538e59251b9bf35.tar.xz
Remove bad whitespaces
Merged vuolter/pyload@00288e6
Diffstat (limited to 'module/gui/XMLParser.py')
-rw-r--r--module/gui/XMLParser.py8
1 files changed, 4 insertions, 4 deletions
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 <http://www.gnu.org/licenses/>.
-
+
@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 = {}