You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@airflow.apache.org by ka...@apache.org on 2020/11/02 11:28:51 UTC

[airflow] branch master updated: Fix doc build error (#12034)

This is an automated email from the ASF dual-hosted git repository.

kaxilnaik pushed a commit to branch master
in repository https://gitbox.apache.org/repos/asf/airflow.git


The following commit(s) were added to refs/heads/master by this push:
     new ba2b3b2  Fix doc build error (#12034)
ba2b3b2 is described below

commit ba2b3b20af5371f158b9f307ed4d9e37c60014f7
Author: Kaxil Naik <ka...@gmail.com>
AuthorDate: Mon Nov 2 11:27:37 2020 +0000

    Fix doc build error (#12034)
---
 docs/faq.rst | 3 ++-
 1 file changed, 2 insertions(+), 1 deletion(-)

diff --git a/docs/faq.rst b/docs/faq.rst
index f5e1555..4012bde 100644
--- a/docs/faq.rst
+++ b/docs/faq.rst
@@ -230,7 +230,7 @@ try pausing the dag again, or check the console or server logs if the
 issue recurs.
 
 Why do I see error when importing or running airflow: ``Symbol not found: _Py_GetArgcArgv``?
------------------------------------------------------
+--------------------------------------------------------------------------------------------
 
 If you are using a homebrew installed version of Python, this is generally caused by
 using python in ``/usr/local/opt/bin`` rather than the Frameworks installation (e.g. for ``python 3.7``: ``/usr/local/opt/python@3.7/Frameworks/Python.framework/Versions/3.7``).
@@ -242,6 +242,7 @@ An easy fix is just to ensure you use a version of Python that has a dylib of th
 
 .. code-block:: bash
   :linenos:
+
   # Note: these instructions are for python3.7 but can be loosely modified for other versions
   brew install python@3.7
   virtualenv -p /usr/local/opt/python@3.7/Frameworks/Python.framework/Versions/3.7/bin/python3 .toy-venv