forked from ungleich-public/cdist
redundant str()
This commit is contained in:
parent
65c8af4ba3
commit
42d5d6c3e2
1 changed files with 1 additions and 1 deletions
|
@ -39,7 +39,7 @@ except ModuleNotFoundError:
|
||||||
capture_output=True,
|
capture_output=True,
|
||||||
text=True)
|
text=True)
|
||||||
if run_git.returncode == 0:
|
if run_git.returncode == 0:
|
||||||
VERSION = str(run_git.stdout)
|
VERSION = run_git.stdout
|
||||||
else:
|
else:
|
||||||
VERSION = 'from git'
|
VERSION = 'from git'
|
||||||
else:
|
else:
|
||||||
|
|
Loading…
Reference in a new issue