Skip to content

Commit 72b24dd

Browse files
committed
Merge branch '3.8' of https://github.com/python/python-docs-es into claudia_unittest
2 parents dad8cba + 0e5f4b6 commit 72b24dd

File tree

1 file changed

+10
-4
lines changed

1 file changed

+10
-4
lines changed

conf.py

+10-4
Original file line numberDiff line numberDiff line change
@@ -69,10 +69,16 @@
6969
_stdauthor, 'manual'),
7070
]
7171

72-
extensions.extend([
73-
'sphinx_tabs.tabs',
74-
'sphinxemoji.sphinxemoji',
75-
])
72+
try:
73+
extensions.extend([
74+
'sphinx_tabs.tabs',
75+
'sphinxemoji.sphinxemoji',
76+
])
77+
except NameError:
78+
extensions = [
79+
'sphinx_tabs.tabs',
80+
'sphinxemoji.sphinxemoji',
81+
]
7682

7783

7884
def setup(app):

0 commit comments

Comments
 (0)