This is an automated email from the git hooks/post-receive script. x2go pushed a change to branch brokerclient in repository python-x2go. from a764584 provide BACKENDS in main module new 49650d9 typo fix new a423bfe Fix setting default values in X2GoClientXConfig class. The 2 revisions listed above as "new" are entirely new to this repository and will be described in separate emails. The revisions listed as "adds" were already present in the repository and have only been added to this reference. Summary of changes: debian/changelog | 3 ++- x2go/xserver.py | 3 +-- 2 files changed, 3 insertions(+), 3 deletions(-) -- Alioth's /srv/git/_hooks_/post-receive-email on /srv/git/code.x2go.org/python-x2go.git
This is an automated email from the git hooks/post-receive script. x2go pushed a commit to branch brokerclient in repository python-x2go. commit 49650d9a1d0f09bf24141f7a56e2f92bd4faca2f Author: Mike Gabriel <mike.gabriel@das-netzwerkteam.de> Date: Wed Feb 5 22:32:07 2014 +0100 typo fix --- debian/changelog | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/debian/changelog b/debian/changelog index 62c2adc..bdfd23c 100644 --- a/debian/changelog +++ b/debian/changelog @@ -14,7 +14,7 @@ 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 + - Don't pass default values to ConfigParser constructor when initializing an INI file. -- Mike Gabriel <mike.gabriel@das-netzwerkteam.de> Sun, 05 Jan 2014 16:35:57 +0100 -- Alioth's /srv/git/_hooks_/post-receive-email on /srv/git/code.x2go.org/python-x2go.git
This is an automated email from the git hooks/post-receive script. x2go pushed a commit to branch brokerclient in repository python-x2go. commit a423bfe0ca5d4e440aedd36c473aba6f8caf1153 Author: Mike Gabriel <mike.gabriel@das-netzwerkteam.de> Date: Wed Feb 5 22:32:41 2014 +0100 Fix setting default values in X2GoClientXConfig class. --- debian/changelog | 1 + x2go/xserver.py | 3 +-- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/debian/changelog b/debian/changelog index bdfd23c..99929ee 100644 --- a/debian/changelog +++ b/debian/changelog @@ -7,6 +7,7 @@ python-x2go (0.5.0.0-0x2go1) UNRELEASED; urgency=low - Fully rework backend concept in Python X2Go. Breaks compatibility with earlier versions of Python X2Go concerning backends (probably not really used by third-party products, if at all). + - Fix setting default values in X2GoClientXConfig class. -- Mike Gabriel <mike.gabriel@das-netzwerkteam.de> Sun, 05 Jan 2014 16:35:57 +0100 diff --git a/x2go/xserver.py b/x2go/xserver.py index 8ee3993..5cf05f8 100644 --- a/x2go/xserver.py +++ b/x2go/xserver.py @@ -50,9 +50,8 @@ class X2GoClientXConfig(inifiles.X2GoIniFile): This class is needed for Windows systems and (maybe soon) for Unix desktops using Wayland. """ - defaultValues = _X2GO_CLIENTXCONFIG_DEFAULTS - def __init__(self, config_files=_X2GO_XCONFIG_CONFIGFILES, defaults=None, logger=None, loglevel=log.loglevel_DEFAULT): + def __init__(self, config_files=_X2GO_XCONFIG_CONFIGFILES, defaults=_X2GO_CLIENTXCONFIG_DEFAULTS, logger=None, loglevel=log.loglevel_DEFAULT): """\ Constructs an L{X2GoClientXConfig} instance. This is normally done by an L{X2GoClient} instance. You can retrieve this L{X2GoClientXConfig} instance with the C{X2GoClient.get_client_xconfig()} -- Alioth's /srv/git/_hooks_/post-receive-email on /srv/git/code.x2go.org/python-x2go.git