diff options
Diffstat (limited to 'sphinx/cmd/quickstart.py')
-rw-r--r-- | sphinx/cmd/quickstart.py | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/sphinx/cmd/quickstart.py b/sphinx/cmd/quickstart.py index 17ae61208..6122ddd98 100644 --- a/sphinx/cmd/quickstart.py +++ b/sphinx/cmd/quickstart.py @@ -540,8 +540,8 @@ def get_parser() -> argparse.ArgumentParser: def main(argv: list[str] = sys.argv[1:]) -> int: - sphinx.locale.setlocale(locale.LC_ALL, '') - sphinx.locale.init_console(os.path.join(package_dir, 'locale'), 'sphinx') + locale.setlocale(locale.LC_ALL, '') + sphinx.locale.init_console() if not color_terminal(): nocolor() |