We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent ea90b29 commit 48b4625Copy full SHA for 48b4625
1 file changed
terrafile/__init__.py
@@ -66,7 +66,7 @@ def has_git_tag(path, tag):
66
if os.path.isdir(path):
67
output, returncode = run('git', 'tag', '--points-at=HEAD', cwd=path)
68
if returncode == 0:
69
- tags.update(output.split())
+ tags.update([t.decode('utf-8') for t in output.split()])
70
return tag in tags
71
72
0 commit comments