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>2021-01-22 15:26:58 +0300
committerTakeshi KOMIYA <i.tkomiya@gmail.com>2021-01-22 15:26:58 +0300
commit1679a0916da70f2ba25873a7babc0b1b06711325 (patch)
tree65cb9bd9b1609345fdd6cc9203e445bdad500e9d /sphinx/util
parent4c0a283178b8f6973df21e08244bdf283a7b276d (diff)
Fix mypy violations (with mypy-0.800)
Diffstat (limited to 'sphinx/util')
-rw-r--r--sphinx/util/i18n.py2
1 files changed, 1 insertions, 1 deletions
diff --git a/sphinx/util/i18n.py b/sphinx/util/i18n.py
index e149976ef..3c1030d62 100644
--- a/sphinx/util/i18n.py
+++ b/sphinx/util/i18n.py
@@ -34,7 +34,7 @@ if False:
logger = logging.getLogger(__name__)
-LocaleFileInfoBase = namedtuple('CatalogInfo', 'base_dir,domain,charset')
+LocaleFileInfoBase = namedtuple('LocaleFileInfoBase', 'base_dir,domain,charset')
class CatalogInfo(LocaleFileInfoBase):