We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
2 parents 893b26d + dc1154d commit 64004a6Copy full SHA for 64004a6
1 file changed
f5-sdk-dist/scripts/get-version-release.py
@@ -63,7 +63,7 @@ def main(args):
63
(output, status) = runCommand('git describe --tags')
64
if status == 0:
65
66
- m = gitDescribeRe.match(output)
+ m = gitDescribeRe.match(output.decode("utf-8"))
67
if m:
68
version = m.group(1)
69
release = m.group(2)
0 commit comments