[X2Go-Commits] [python-x2go] 01/03: Don't parse default values to ConfigParser constructor when initializing an INI file.

git-admin at x2go.org git-admin at x2go.org
Fri Jan 17 15:05:56 CET 2014


This is an automated email from the git hooks/post-receive script.

x2go pushed a commit to branch brokerclient
in repository python-x2go.

commit 7815d136343dc350ae5f5ebe16b6e9e2da216d5e
Author: Mike Gabriel <mike.gabriel at das-netzwerkteam.de>
Date:   Wed Jan 8 22:18:44 2014 +0100

    Don't parse default values to ConfigParser constructor when initializing an INI file.
---
 debian/changelog |    9 +++++++++
 x2go/inifiles.py |    2 +-
 2 files changed, 10 insertions(+), 1 deletion(-)

diff --git a/debian/changelog b/debian/changelog
index bf70de7..a83c949 100644
--- a/debian/changelog
+++ b/debian/changelog
@@ -7,6 +7,15 @@ python-x2go (0.5.0.0-0x2go1) UNRELEASED; urgency=low
 
  -- Mike Gabriel <mike.gabriel at das-netzwerkteam.de>  Sun, 05 Jan 2014 16:35:57 +0100
 
+python-x2go (0.4.0.10-0x2go1) UNRELEASED; urgency=low
+
+  [ Mike Gabriel ]
+  * New upstream version (0.4.0.10):
+    - Don't parse default values to ConfigParser constructor when initializing
+      an INI file.
+
+ -- Mike Gabriel <mike.gabriel at das-netzwerkteam.de>  Sun, 05 Jan 2014 16:35:57 +0100
+
 python-x2go (0.4.0.9-0x2go1) UNRELEASED; urgency=low
 
   [ Mike Gabriel ]
diff --git a/x2go/inifiles.py b/x2go/inifiles.py
index d2ea230..6390d92 100644
--- a/x2go/inifiles.py
+++ b/x2go/inifiles.py
@@ -93,7 +93,7 @@ class X2GoIniFile(object):
         # here as we do not want to run into name conflicts between
         # X2Go ini file options and method / property names in
         # SafeConfigParser... This is a pre-cautious approach...
-        self.iniConfig = ConfigParser.SafeConfigParser(self.defaultValues)
+        self.iniConfig = ConfigParser.SafeConfigParser()
         self.iniConfig.optionxform = str
 
         _create_file = False

--
Alioth's /srv/git/_hooks_/post-receive-email on /srv/git/code.x2go.org/python-x2go.git



More information about the x2go-commits mailing list