[X2Go-Commits] [x2goclient] 38/94: setup.py: Fix version string detection. (Copy+paste flaw...).
git-admin at x2go.org
git-admin at x2go.org
Fri Dec 15 21:06:38 CET 2023
This is an automated email from the git hooks/post-receive script.
x2go pushed a commit to annotated tag 0.6.1.0
in repository x2goclient.
commit de1d266f2d33e4b9d444ae5eded521dc8008cbc3
Author: Mike Gabriel <mike.gabriel at 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 cbc069a4..6376de78 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/x2goclient.git
More information about the x2go-commits
mailing list