Skip to content

Commit 2cf7831

Browse files
authored
Fix indentation in code block of user_guide/i18n (#2248)
Hi, this small PR fixes the indentation of the `setup()` function body in the `conf.py` code block found in ` user_guide/i18n.rst`.
1 parent 05b9bc7 commit 2cf7831

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

docs/user_guide/i18n.rst

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -59,9 +59,9 @@ documentation translations.
5959
}
6060
6161
def setup(app):
62-
locale_dir = os.path.join(os.path.abspath(os.path.dirname(__file__)), "locale")
62+
locale_dir = os.path.join(os.path.abspath(os.path.dirname(__file__)), "locale")
6363
64-
app.add_message_catalog(catalog, locale_dir)
64+
app.add_message_catalog(catalog, locale_dir)
6565
6666
#. Extract the strings to localize:
6767

0 commit comments

Comments
 (0)