Welcome to mirror list, hosted at ThFree Co, Russian Federation.

github.com/sphinx-doc/sphinx.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorTakeshi KOMIYA <i.tkomiya@gmail.com>2017-10-23 17:04:32 +0300
committerTakeshi KOMIYA <i.tkomiya@gmail.com>2017-10-23 17:04:32 +0300
commite3baf213f508e1db254b150629f0ab22bc8d074c (patch)
tree2cc262e9178d1a6b4e880a990015358aede6fc06 /sphinx/theming.py
parent7e7b389eedc7ada1260457f1d7e9662f31cdd473 (diff)
parent47c869c89ab47f5c89300442d5b4a1abe4f3543c (diff)
Merge branch 'stable'
Diffstat (limited to 'sphinx/theming.py')
-rw-r--r--sphinx/theming.py2
1 files changed, 1 insertions, 1 deletions
diff --git a/sphinx/theming.py b/sphinx/theming.py
index c7ac7500b..78c73b63f 100644
--- a/sphinx/theming.py
+++ b/sphinx/theming.py
@@ -157,7 +157,7 @@ def is_archived_theme(filename):
try:
with ZipFile(filename) as f: # type: ignore
return THEMECONF in f.namelist()
- except:
+ except Exception:
return False