You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@airflow.apache.org by jl...@apache.org on 2017/02/21 00:42:42 UTC

incubator-airflow git commit: [AIRFLOW-889] Fix minor error in the docstrings for BaseOperator

Repository: incubator-airflow
Updated Branches:
  refs/heads/master 44fcabc36 -> 50702d061


[AIRFLOW-889] Fix minor error in the docstrings for BaseOperator

task --> class

Closes #2084 from ketanbhatt/patch-1


Project: http://git-wip-us.apache.org/repos/asf/incubator-airflow/repo
Commit: http://git-wip-us.apache.org/repos/asf/incubator-airflow/commit/50702d06
Tree: http://git-wip-us.apache.org/repos/asf/incubator-airflow/tree/50702d06
Diff: http://git-wip-us.apache.org/repos/asf/incubator-airflow/diff/50702d06

Branch: refs/heads/master
Commit: 50702d06187035c99e51ea936c756c00332c4a4a
Parents: 44fcabc
Author: Ketan Bhatt <ke...@squadrun.co>
Authored: Mon Feb 20 19:42:30 2017 -0500
Committer: Jeremiah Lowin <jl...@apache.org>
Committed: Mon Feb 20 19:42:30 2017 -0500

----------------------------------------------------------------------
 airflow/models.py | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)
----------------------------------------------------------------------


http://git-wip-us.apache.org/repos/asf/incubator-airflow/blob/50702d06/airflow/models.py
----------------------------------------------------------------------
diff --git a/airflow/models.py b/airflow/models.py
index 8965ade..db9112a 100755
--- a/airflow/models.py
+++ b/airflow/models.py
@@ -1767,7 +1767,7 @@ class BaseOperator(object):
     dag crawling behavior. To derive this class, you are expected to override
     the constructor as well as the 'execute' method.
 
-    Operators derived from this task should perform or trigger certain tasks
+    Operators derived from this class should perform or trigger certain tasks
     synchronously (wait for completion). Example of operators could be an
     operator the runs a Pig job (PigOperator), a sensor operator that
     waits for a partition to land in Hive (HiveSensorOperator), or one that