This is an automated email from the git hooks/post-receive script. x2go pushed a change to branch master in repository python-x2go. from 413c85a x2go/utils.py: Python3 fix in get_workarea_geometry(). new 5166f57 x2go/backends/terminal/plain.py: Initialize cmd_line list before prepending env vars. The 1 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: x2go/backends/terminal/plain.py | 1 + 1 file changed, 1 insertion(+) -- Alioth's /home/x2go-admin/maintenancescripts/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 master in repository python-x2go. commit 5166f5770504e277935b4c5bf7b2008ecc95c73f Author: Mike Gabriel <mike.gabriel@das-netzwerkteam.de> Date: Tue May 15 14:52:31 2018 +0200 x2go/backends/terminal/plain.py: Initialize cmd_line list before prepending env vars. --- x2go/backends/terminal/plain.py | 1 + 1 file changed, 1 insertion(+) diff --git a/x2go/backends/terminal/plain.py b/x2go/backends/terminal/plain.py index b710cc5..4f7b29a 100644 --- a/x2go/backends/terminal/plain.py +++ b/x2go/backends/terminal/plain.py @@ -1640,6 +1640,7 @@ class X2GoTerminalSession(object): self.logger('failed to detect best maxmimized geometry of your client-side desktop, using 1024x768 instead', loglevel=log.loglevel_WARN) self.params.geometry = "1024x768" + cmd_line = [] if self.params.xinerama: cmd_line = ['X2GO_XINERAMA=true'] + cmd_line else: -- Alioth's /home/x2go-admin/maintenancescripts/git/hooks/post-receive-email on /srv/git/code.x2go.org/python-x2go.git