We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 2545b7e commit c444135Copy full SHA for c444135
1 file changed
InteractiveHtmlBom/version.py
@@ -11,6 +11,7 @@ def _get_git_version():
11
try:
12
git_version = subprocess.check_output(
13
['git', 'describe', '--tags', '--abbrev=4', '--dirty=-*'],
14
+ stderr=subprocess.DEVNULL,
15
cwd=plugin_path)
16
if isinstance(git_version, bytes):
17
return git_version.decode('utf-8').rstrip()
0 commit comments