diff options
author | Takeshi KOMIYA <i.tkomiya@gmail.com> | 2018-09-18 11:55:22 +0900 |
---|---|---|
committer | Takeshi KOMIYA <i.tkomiya@gmail.com> | 2018-09-18 11:55:22 +0900 |
commit | e2979d1353f5dca617b0dd9e75f3f9b60d37d2b9 (patch) | |
tree | d0484d96b97cc724ab6cf7466a2fb38030a1a7f4 /sphinx/util/osutil.py | |
parent | 5fd45a0f6f0478eff0265ab03ee4e972e194a7d5 (diff) | |
download | sphinx-git-e2979d1353f5dca617b0dd9e75f3f9b60d37d2b9.tar.gz |
Fix mypy violations
Diffstat (limited to 'sphinx/util/osutil.py')
-rw-r--r-- | sphinx/util/osutil.py | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/sphinx/util/osutil.py b/sphinx/util/osutil.py index 986171293..4c75009ee 100644 --- a/sphinx/util/osutil.py +++ b/sphinx/util/osutil.py @@ -235,7 +235,7 @@ def abspath(pathdir): try: pathdir = pathdir.decode(fs_encoding) except UnicodeDecodeError: - raise UnicodeDecodeError('multibyte filename not supported on ' + raise UnicodeDecodeError('multibyte filename not supported on ' # type: ignore 'this filesystem encoding ' '(%r)' % fs_encoding) return pathdir |