diff options
author | Takeshi KOMIYA <i.tkomiya@gmail.com> | 2017-10-23 23:01:18 +0900 |
---|---|---|
committer | Takeshi KOMIYA <i.tkomiya@gmail.com> | 2017-10-23 23:01:18 +0900 |
commit | 47c869c89ab47f5c89300442d5b4a1abe4f3543c (patch) | |
tree | 16fad1a1f84281ffa0326f85fe2e47ff0cd4daf8 /sphinx/theming.py | |
parent | 314831d332f73252214c090d356c6e84d6fb3795 (diff) | |
download | sphinx-git-47c869c89ab47f5c89300442d5b4a1abe4f3543c.tar.gz |
Fix flake8 and style-check violations
Diffstat (limited to 'sphinx/theming.py')
-rw-r--r-- | sphinx/theming.py | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/sphinx/theming.py b/sphinx/theming.py index 1cd07b8dc..f787e8120 100644 --- a/sphinx/theming.py +++ b/sphinx/theming.py @@ -156,7 +156,7 @@ def is_archived_theme(filename): try: with ZipFile(filename) as f: # type: ignore return THEMECONF in f.namelist() - except: + except Exception: return False |