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

kaxilnaik pushed a commit to branch v2-0-test
in repository https://gitbox.apache.org/repos/asf/airflow.git

commit 0e2f29512881ef24f6761e7314bebeeee9acf600
Author: Kaxil Naik <[email protected]>
AuthorDate: Sun Apr 4 16:12:58 2021 +0100

    Fix Providers doc (#15185)
    
    `pip pip install -e /path/to/my-package` -> `pip install -e 
/path/to/my-package`
    
    (cherry picked from commit dc969685011938f0fb692c36918a7f0feb26472a)
---
 docs/apache-airflow-providers/index.rst | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/docs/apache-airflow-providers/index.rst 
b/docs/apache-airflow-providers/index.rst
index 222112f..81e02fa 100644
--- a/docs/apache-airflow-providers/index.rst
+++ b/docs/apache-airflow-providers/index.rst
@@ -248,7 +248,7 @@ When running airflow with your provider package, there will 
be (at least) three
   together with the related files (e.g. ``dags`` folder)
 * The ``apache-airflow`` package
 * Your own ``myproviderpackage`` package that is independent of 
``apache-airflow`` or your airflow installation, which
-  can be a local Python package (that you install via ``pip pip install -e 
/path/to/my-package``), a normal pip package
+  can be a local Python package (that you install via ``pip install -e 
/path/to/my-package``), a normal pip package
   (``pip install myproviderpackage``), or any other type of Python package
 
 In the ``myproviderpackage`` package you need to add the entry point and 
provide the appropriate metadata as described above.

Reply via email to