This is an automated email from the git hooks/post-receive script. x2go pushed a change to branch master in repository pyhoca-cli. from 17d1be1 pyhoca-cli: Add cmdline option --list-cmdline-features. Required for Remmina X2Go Plugin. new 8b7f6f8 pyhoca-cli: Write program version to STDOUT (not STDERR). 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: pyhoca-cli | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) -- Alioth's /home/x2go-admin/maintenancescripts/git/hooks/post-receive-email on /srv/git/code.x2go.org/pyhoca-cli.git
This is an automated email from the git hooks/post-receive script. x2go pushed a commit to branch master in repository pyhoca-cli. commit 8b7f6f889ac8c38eaa67ab16c591d435179706e1 Author: Mike Gabriel <mike.gabriel@das-netzwerkteam.de> Date: Wed Nov 17 21:39:32 2021 +0100 pyhoca-cli: Write program version to STDOUT (not STDERR). --- pyhoca-cli | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/pyhoca-cli b/pyhoca-cli index 4ae5cc3..454c9a4 100755 --- a/pyhoca-cli +++ b/pyhoca-cli @@ -292,7 +292,7 @@ backend_options = [ # print version text and exit def version(): - sys.stderr.write ("%s\n" % VERSION_TEXT) + print("%s" % VERSION_TEXT) sys.exit(0) def list_features(): -- Alioth's /home/x2go-admin/maintenancescripts/git/hooks/post-receive-email on /srv/git/code.x2go.org/pyhoca-cli.git