redundant str()

This commit is contained in:
ander 2020-10-16 14:12:39 +03:00
parent 65c8af4ba3
commit 42d5d6c3e2
1 changed files with 1 additions and 1 deletions

View File

@ -39,7 +39,7 @@ except ModuleNotFoundError:
capture_output=True,
text=True)
if run_git.returncode == 0:
VERSION = str(run_git.stdout)
VERSION = run_git.stdout
else:
VERSION = 'from git'
else: