Repository: incubator-airflow
Updated Branches:
  refs/heads/master a1e5a075c -> bf1296fbd


[AIRFLOW-2092] Fixed incorrect parameter in docstring for FTPHook

Fixed the datatype of parameter
`local_full_path_or_buffer` in `retrieve_file`
method for FTPHook

Closes #3026 from kaxil/patch-2


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

Branch: refs/heads/master
Commit: bf1296fbd2024135d4300fe9f0e5ce8f0dac1825
Parents: a1e5a07
Author: Kaxil Naik <kaxiln...@gmail.com>
Authored: Fri Feb 9 13:45:05 2018 +0100
Committer: Fokko Driesprong <fokkodriespr...@godatadriven.com>
Committed: Fri Feb 9 13:45:05 2018 +0100

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


http://git-wip-us.apache.org/repos/asf/incubator-airflow/blob/bf1296fb/airflow/contrib/hooks/ftp_hook.py
----------------------------------------------------------------------
diff --git a/airflow/contrib/hooks/ftp_hook.py 
b/airflow/contrib/hooks/ftp_hook.py
index b1e224d..bd46ba5 100644
--- a/airflow/contrib/hooks/ftp_hook.py
+++ b/airflow/contrib/hooks/ftp_hook.py
@@ -154,7 +154,7 @@ class FTPHook(BaseHook, LoggingMixin):
         :type remote_full_path: str
         :param local_full_path_or_buffer: full path to the local file or a
             file-like buffer
-        :type local_full_path: str or file-like buffer
+        :type local_full_path_or_buffer: str or file-like buffer
         """
         conn = self.get_conn()
 

Reply via email to