Commit message (Collapse) | Author | Age | Files | Lines | |
---|---|---|---|---|---|
* | Drop python 3.6 support (#10468) | Takeshi KOMIYA | 2022-06-16 | 1 | -7/+1 |
| | |||||
* | Fix AttributeError in ExtensionError | Jon Dufresne | 2018-09-09 | 1 | -0/+17 |
In Python 3, the attribute BaseException.message doesn't exist. $ python3 >>> from sphinx.errors import ExtensionError >>> e = ExtensionError('foo') >>> repr(e) Traceback (most recent call last): File "<stdin>", line 1, in <module> File "sphinx/sphinx/errors.py", line 65, in __repr__ return '%s(%r)' % (self.__class__.__name__, self.message) AttributeError: 'ExtensionError' object has no attribute 'message' |