This is an automated email from the git hooks/post-receive script. x2go pushed a change to branch master in repository pyhoca-cli. from 341fe80 debian/rules: Ignore failures during dh_auto_clean. Helps with build envs that don't have python3-setuptools installed when building source packages. new de1d266 setup.py: Fix version string detection. (Copy+paste flaw...). 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: setup.py | 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 de1d266f2d33e4b9d444ae5eded521dc8008cbc3 Author: Mike Gabriel <mike.gabriel@das-netzwerkteam.de> Date: Mon May 14 09:59:55 2018 +0200 setup.py: Fix version string detection. (Copy+paste flaw...). --- setup.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/setup.py b/setup.py index cbc069a..6376de7 100755 --- a/setup.py +++ b/setup.py @@ -23,7 +23,7 @@ import os from setuptools import setup __VERSION__ = "0.0.0.0" -for line in open(os.path.join('x2go', '__init__.py'),encoding='utf-8').readlines(): +for line in open(os.path.join('pyhoca', 'cli', '__init__.py'),encoding='utf-8').readlines(): if (line.startswith('__VERSION__')): exec(line.strip()) PROGRAM_VERSION = __VERSION__ -- Alioth's /home/x2go-admin/maintenancescripts/git/hooks/post-receive-email on /srv/git/code.x2go.org/pyhoca-cli.git