The branch, master has been updated via 185d624e21315ba72cfafac8fa31ac84b8e759b0 (commit) from a026dbd05c0a0d63997c23a9d471141345c56263 (commit) Those revisions listed above that are new to this repository have not appeared on any other notification email; so we list those revisions in full, below. - Log ----------------------------------------------------------------- commit 185d624e21315ba72cfafac8fa31ac84b8e759b0 Author: Mike Gabriel <mike.gabriel@das-netzwerkteam.de> Date: Fri Mar 1 23:47:03 2013 +0100 boolean values do not have a .lower() method ----------------------------------------------------------------------- Summary of changes: x2gobroker/brokers/base_broker.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) The diff of changes is: diff --git a/x2gobroker/brokers/base_broker.py b/x2gobroker/brokers/base_broker.py index dc29806..8426bd1 100644 --- a/x2gobroker/brokers/base_broker.py +++ b/x2gobroker/brokers/base_broker.py @@ -481,7 +481,7 @@ class X2GoBroker(object): logger_broker.debug('base_broker.X2GoBroker.get_session_autostart(): found broker-session-autostart in session profile with ID {id}: {value}. This one has precendence over the default value.'.format(id=profile_id, value=_session_autostart)) elif self.config.has_value('global', 'default-session-autostart'): - _default_session_autostart = self.config.get_value('global', 'default-session-autostart').lower() + _default_session_autostart = self.config.get_value('global', 'default-session-autostart') logger_broker.debug('base_broker.X2GoBroker.get_session_autostart(): found default-session-autostart in global config section: {value}'.format(value=_default_session_autostart)) return _session_autostart or _default_session_autostart hooks/post-receive -- x2gobroker.git (HTTP(S) Session broker for X2Go) This is an automated email from the git hooks/post-receive script. It was generated because a ref change was pushed to the repository containing the project "x2gobroker.git" (HTTP(S) Session broker for X2Go).