Try to fix capsys issue with Python 3.8 (third try)

pull/1782/head
grossmj 4 years ago
parent 7fb554135f
commit 1a4c2ed069

@ -32,6 +32,6 @@ if "dev" in __version__:
import subprocess
if os.path.exists(os.path.join(os.path.dirname(os.path.abspath(__file__)), "..", ".git")):
r = subprocess.check_output(["git", "rev-parse", "--short", "HEAD"]).decode().strip()
__version__ += "-" + r
__version__ = "{}-{}".format(__version__, r)
except Exception as e:
print(e)

Loading…
Cancel
Save