File tree Expand file tree Collapse file tree 2 files changed +7
-1
lines changed Expand file tree Collapse file tree 2 files changed +7
-1
lines changed Original file line number Diff line number Diff line change 30
30
- Modernize packaging using setuptools, build, and setuptools_scm
31
31
instead of pbr.
32
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
+
33
39
7.7.0
34
40
=====
35
41
Original file line number Diff line number Diff line change @@ -245,7 +245,7 @@ def _get_contributors(self):
245
245
246
246
try :
247
247
p = subprocess .run (cmd , check = True , stdout = subprocess .PIPE )
248
- except subprocess .CalledProcessError as err :
248
+ except ( subprocess .CalledProcessError , FileNotFoundError ) as err :
249
249
logger .warning ('Called: %s' , ' ' .join (cmd ))
250
250
logger .warning ('Failed to scan contributors: %s' , err )
251
251
return set ()
You can’t perform that action at this time.
0 commit comments