This is an automated email from the ASF dual-hosted git repository.
kaxilnaik pushed a commit to branch main
in repository https://gitbox.apache.org/repos/asf/airflow.git
The following commit(s) were added to refs/heads/main by this push:
new d450976 Docs: Fix rendering of ``PYTHONPATH`` values (#16664)
d450976 is described below
commit d45097612b54101cc79a9f53ff77976a0d9e7116
Author: Kaxil Naik <[email protected]>
AuthorDate: Fri Jun 25 20:54:56 2021 +0100
Docs: Fix rendering of ``PYTHONPATH`` values (#16664)
---
docs/apache-airflow/modules_management.rst | 4 +++-
1 file changed, 3 insertions(+), 1 deletion(-)
diff --git a/docs/apache-airflow/modules_management.rst
b/docs/apache-airflow/modules_management.rst
index bb71b6f..17adf20 100644
--- a/docs/apache-airflow/modules_management.rst
+++ b/docs/apache-airflow/modules_management.rst
@@ -224,7 +224,9 @@ and use them similar to directories specified with the
environment variable
:envvar:`PYTHONPATH`. An example of the contents of the sys.path variable
specified by this command may be as follows:
-Python PATH:
[/home/rootcss/venvs/airflow/bin:/usr/lib/python38.zip:/usr/lib/python3.8:/usr/lib/python3.8/lib-dynload:/home/rootcss/venvs/airflow/lib/python3.8/site-packages:/home/rootcss/airflow/dags:/home/rootcss/airflow/config:/home/rootcss/airflow/plugins]
+.. code-block:: none
+
+ Python PATH:
[/home/rootcss/venvs/airflow/bin:/usr/lib/python38.zip:/usr/lib/python3.8:/usr/lib/python3.8/lib-dynload:/home/rootcss/venvs/airflow/lib/python3.8/site-packages:/home/rootcss/airflow/dags:/home/rootcss/airflow/config:/home/rootcss/airflow/plugins]
Below is the sample output of the ``airflow info`` command: