From a8ddf72318991bb86aa78b19033daf2e3611688a Mon Sep 17 00:00:00 2001 From: Jonathan Rubenstein Date: Sun, 26 Dec 2021 05:08:43 +0200 Subject: [PATCH] [doc] conf: Fix typo in release git-describe command We got the gist of it, but in the end, didn't git it right. --- doc/conf.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/doc/conf.py b/doc/conf.py index ddf76fe9..a62c4d84 100644 --- a/doc/conf.py +++ b/doc/conf.py @@ -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)'