The branch, build-baikal has been updated via 99ade314aa7312a33aeb8d6d6327a395fa0de6b4 (commit) from 273e67e08d30e30b30240588fdddb9e9845e8a09 (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 ----------------------------------------------------------------- ----------------------------------------------------------------------- Summary of changes: x2go/checkhosts.py | 4 ++-- x2go/guardian.py | 2 +- x2go/utils.py | 2 +- x2go/xserver.py | 4 ++-- 4 files changed, 6 insertions(+), 6 deletions(-) The diff of changes is: diff --git a/x2go/checkhosts.py b/x2go/checkhosts.py index 08672c8..934f531 100644 --- a/x2go/checkhosts.py +++ b/x2go/checkhosts.py @@ -41,7 +41,7 @@ class X2goInteractiveAddPolicy(paramiko.MissingHostKeyPolicy): Once called, the L{missing_host_key} method of this class will try to call L{X2goSession.HOOK_check_host_dialog()}. This hook method---if not re-defined in your application---will then try to call the L{X2goClient.HOOK_check_host_dialog()}, - which then will return C{true} by default if not customized in your application. + which then will return C{True} by default if not customized in your application. To accept host key checks, make sure to either customize the L{X2goClient.HOOK_check_host_dialog()} method or the L{X2goSession.HOOK_check_host_dialog()} @@ -66,7 +66,7 @@ class X2goInteractiveAddPolicy(paramiko.MissingHostKeyPolicy): Once called, the L{missing_host_key} method will try to call L{X2goSession.HOOK_check_host_dialog()}. This hook method---if not re-defined in your application---will then try to call the L{X2goClient.HOOK_check_host_dialog()}, - which then will return C{true} by default if not customized in your application. + which then will return C{True} by default if not customized in your application. To accept host key checks, make sure to either customize the L{X2goClient.HOOK_check_host_dialog()} method or the L{X2goSession.HOOK_check_host_dialog()} diff --git a/x2go/guardian.py b/x2go/guardian.py index 4fe856e..42943bd 100644 --- a/x2go/guardian.py +++ b/x2go/guardian.py @@ -61,7 +61,7 @@ class X2goSessionGuardian(threading.Thread): """\ @param auto_update_listsessions_cache: let L{X2goSessionGuardian} refresh the session list cache for all L{X2goSession} objects @type auto_update_listsessions_cache: C{bool} - @param auto_update_sessionregistry: if set to C{true} the session status will be updated in regular intervals + @param auto_update_sessionregistry: if set to C{True} the session status will be updated in regular intervals @type auto_update_sessionregistry: C{bool} @param auto_register_sessions: register new sessions automatically once they appear in the X2go session (e.g. instantiated by another client that is connected to the same X2go server under same user ID) diff --git a/x2go/utils.py b/x2go/utils.py index 8de5cc6..ffb1c62 100644 --- a/x2go/utils.py +++ b/x2go/utils.py @@ -366,7 +366,7 @@ def is_abs_path(path): @param path: test this path for absolutism... @type path: C{str} - @return: Returns C{true} if path is an absolute path name + @return: Returns C{True} if path is an absolute path name @rtype: C{bool} """ return bool((path.startswith('/') or re.match('^[%s]\:\\\\' % string.ascii_letters, path))) diff --git a/x2go/xserver.py b/x2go/xserver.py index 0f8e1bb..54dcce8 100644 --- a/x2go/xserver.py +++ b/x2go/xserver.py @@ -146,7 +146,7 @@ class X2goClientXConfig(inifiles.X2goIniFile): def xserver_launch_possible(self): """\ Detect if there is an XServer (that is known to Python X2go) installed on the system. - Equals C{true} if we have found an installed XServer that we can launch. + Equals C{True} if we have found an installed XServer that we can launch. """ return bool(self.installed_xservers) @@ -155,7 +155,7 @@ class X2goClientXConfig(inifiles.X2goIniFile): def xserver_launch_needed(self): """\ Detect if an XServer launch is really needed (or if we use an already running XServer instance). - Equals C{true} if we have to launch an XServer before we can start/resume + Equals C{True} if we have to launch an XServer before we can start/resume X2go sessions. """ hooks/post-receive -- python-x2go.git (Python X2Go Client API) 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 "python-x2go.git" (Python X2Go Client API).