This is an automated email from the git hooks/post-receive script. x2go pushed a change to branch master in repository python-x2go. from dd894b0 x2go/backends/control/plain.py: Drop one line of debug code. new c0f5406 Revert "x2go/backends/terminal/plain.py: Correctly update session window file in Python3." 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 | 5 +---- 1 file changed, 1 insertion(+), 4 deletions(-) -- 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 c0f5406a007259b75f359c2b207182708051bffc Author: Mike Gabriel <mike.gabriel@das-netzwerkteam.de> Date: Tue Sep 18 20:46:51 2018 +0200 Revert "x2go/backends/terminal/plain.py: Correctly update session window file in Python3." This reverts commit 4ba693e284929855a2cd4202f54cd906f85f342d. --- x2go/backends/terminal/plain.py | 5 +---- 1 file changed, 1 insertion(+), 4 deletions(-) diff --git a/x2go/backends/terminal/plain.py b/x2go/backends/terminal/plain.py index de31884..7717be6 100644 --- a/x2go/backends/terminal/plain.py +++ b/x2go/backends/terminal/plain.py @@ -1169,10 +1169,7 @@ class X2GoTerminalSession(object): _id = self.session_window.id else: _id = self.session_window - if sys.version_info[0] >= 3: - f.write(b'ID:{window_id}\n'.format(window_id=_id)) - else: - f.write(u'ID:{window_id}\n'.format(window_id=_id)) + f.write(u'ID:{window_id}\n'.format(window_id=_id)) f.close() self.logger('Updating session.window file %s: Window-ID->%s' % (session_window_file, _id), loglevel=log.loglevel_DEBUG) else: -- Alioth's /home/x2go-admin/maintenancescripts/git/hooks/post-receive-email on /srv/git/code.x2go.org/python-x2go.git