Repository: incubator-airflow Updated Branches: refs/heads/master 3358551c8 -> 1c8e5808d
[AIRFLOW-XXX] Typo fix Closes #3474 from prabeesh/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/1c8e5808 Tree: http://git-wip-us.apache.org/repos/asf/incubator-airflow/tree/1c8e5808 Diff: http://git-wip-us.apache.org/repos/asf/incubator-airflow/diff/1c8e5808 Branch: refs/heads/master Commit: 1c8e5808d4b7b5ebe932944921e38ccbd208d1b2 Parents: 3358551 Author: Prabeesh K <[email protected]> Authored: Thu Jun 7 11:12:50 2018 -0700 Committer: Joy Gao <[email protected]> Committed: Thu Jun 7 11:12:52 2018 -0700 ---------------------------------------------------------------------- airflow/contrib/operators/mongo_to_s3.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) ---------------------------------------------------------------------- http://git-wip-us.apache.org/repos/asf/incubator-airflow/blob/1c8e5808/airflow/contrib/operators/mongo_to_s3.py ---------------------------------------------------------------------- diff --git a/airflow/contrib/operators/mongo_to_s3.py b/airflow/contrib/operators/mongo_to_s3.py index 77b5953..43b5d8b 100644 --- a/airflow/contrib/operators/mongo_to_s3.py +++ b/airflow/contrib/operators/mongo_to_s3.py @@ -98,7 +98,7 @@ class MongoToS3Operator(BaseOperator): def _stringify(self, iterable, joinable='\n'): """ - Takes an interable (pymongo Cursor or Array) containing dictionaries and + Takes an iterable (pymongo Cursor or Array) containing dictionaries and returns a stringified version using python join """ return joinable.join(
