Repository: incubator-airflow
Updated Branches:
  refs/heads/master dd861f8cd -> bc25d593c


[AIRFLOW-1678] Fix erroneously repeated word in function docstrings

Closes #2660 from thundergolfer/thundergolfer
/small-docstring-fix


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

Branch: refs/heads/master
Commit: bc25d593ccf038cb0da615c8ecd190ea17de7458
Parents: dd861f8
Author: Jonathon Belotti <[email protected]>
Authored: Wed Oct 4 10:57:56 2017 +0200
Committer: Bolke de Bruin <[email protected]>
Committed: Wed Oct 4 10:57:56 2017 +0200

----------------------------------------------------------------------
 airflow/models.py | 4 ++--
 1 file changed, 2 insertions(+), 2 deletions(-)
----------------------------------------------------------------------


http://git-wip-us.apache.org/repos/asf/incubator-airflow/blob/bc25d593/airflow/models.py
----------------------------------------------------------------------
diff --git a/airflow/models.py b/airflow/models.py
index 32b7d7e..e764d85 100755
--- a/airflow/models.py
+++ b/airflow/models.py
@@ -2653,14 +2653,14 @@ class BaseOperator(LoggingMixin):
 
     def set_downstream(self, task_or_task_list):
         """
-        Set a task, or a task task to be directly downstream from the current
+        Set a task or a task list to be directly downstream from the current
         task.
         """
         self._set_relatives(task_or_task_list, upstream=False)
 
     def set_upstream(self, task_or_task_list):
         """
-        Set a task, or a task task to be directly upstream from the current
+        Set a task or a task list to be directly upstream from the current
         task.
         """
         self._set_relatives(task_or_task_list, upstream=True)

Reply via email to