##// END OF EJS Templates
py3: fix python version read.
marcink -
r980:328a152e python3
parent child Browse files
Show More
@@ -77,7 +77,7 b' test_requirements = _get_requirements('
77 77
78 78 def get_version():
79 79 version = pkgutil.get_data('vcsserver', 'VERSION')
80 return version.strip()
80 return str(version.strip())
81 81
82 82
83 83 # additional files that goes into package itself
General Comments 0
You need to be logged in to leave comments. Login now