We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
2 parents 13ac4cc + 7b10eea commit 65a9b84Copy full SHA for 65a9b84
docs/source/history.rst
@@ -30,6 +30,12 @@ Next
30
- Modernize packaging using setuptools, build, and setuptools_scm
31
instead of pbr.
32
33
+Bug Fixes
34
+---------
35
+
36
+- `#229 <https://github.com/sphinx-contrib/spelling/pull/229>`__ Gracefully
37
+ handle if git is not installed
38
39
7.7.0
40
=====
41
sphinxcontrib/spelling/filters.py
@@ -245,7 +245,7 @@ def _get_contributors(self):
245
246
try:
247
p = subprocess.run(cmd, check=True, stdout=subprocess.PIPE)
248
- except subprocess.CalledProcessError as err:
+ except (subprocess.CalledProcessError, FileNotFoundError) as err:
249
logger.warning('Called: %s', ' '.join(cmd))
250
logger.warning('Failed to scan contributors: %s', err)
251
return set()
0 commit comments