Failed with this commit: 809e4a9
Reason:
Line 83 in doc/conf.py throws an error since prere is NoneType.
Error:
File "conf.py", line 83, in <module>
tweak = '+'.join([prere, sha])
TypeError: sequence item 0: expected str instance, NoneType found
Dirty fix:
-tweak = '+'.join([prere, sha])
+try:
+ tweak = '+'.join([prere, sha])
+except:
+ tweak = sha
Failed with this commit: 809e4a9
Reason:
Line 83 in
doc/conf.pythrows an error sinceprereis NoneType.Error:
Dirty fix: