Skip to content

Commit fe2da1d

Browse files
authored
Merge pull request #31 from Chilipp/py35-fix
Remove f-strings
2 parents e0ab897 + 52f5970 commit fe2da1d

File tree

2 files changed

+3
-2
lines changed

2 files changed

+3
-2
lines changed

.travis.yml

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -6,6 +6,7 @@ python:
66
- "3.8"
77
- "3.7"
88
- "3.6"
9+
- "3.5"
910
env:
1011
- SPHINX_VERSION=""
1112
- SPHINX_VERSION=3.2.*

autodocsumm/__init__.py

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -527,8 +527,8 @@ def run(self):
527527
except (KeyError, ValueError, TypeError) as exc:
528528
# an option is either unknown or has a wrong type
529529
logger.error(
530-
f'An option to {self.name} is either unknown or has an invalid '
531-
f'value: {exc}',
530+
'An option to %s is either unknown or has an invalid '
531+
'value: %s', self.name, exc,
532532
location=(self.env.docname, lineno))
533533
return []
534534

0 commit comments

Comments
 (0)