[doc] conf: Fix typo in release git-describe command

We got the gist of it, but in the end, didn't git it right.
This commit is contained in:
Jonathan Rubenstein 2021-12-26 05:08:43 +02:00 committed by Geoffrey McRae
parent 5d9db8b2f5
commit a8ddf72318

View File

@ -30,7 +30,7 @@ except IOError:
import subprocess
try:
release = subprocess.check_output([
'gist', 'describe', '--always', '--abbrev=10', '--dirty=+', '--tags'
'git', 'describe', '--always', '--abbrev=10', '--dirty=+', '--tags'
]).decode('utf-8').strip()
except (subprocess.CalledProcessError, OSError):
release = '(unknown version)'