You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@arrow.apache.org by we...@apache.org on 2018/08/01 13:53:57 UTC

[arrow] branch master updated: ARROW-2955: Fix typo in pyarrow's HDFS API result

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

wesm pushed a commit to branch master
in repository https://gitbox.apache.org/repos/asf/arrow.git


The following commit(s) were added to refs/heads/master by this push:
     new f0cbfc3  ARROW-2955: Fix typo in pyarrow's HDFS API result
f0cbfc3 is described below

commit f0cbfc3e663880af0dcea38e49dc4ddc7a04316d
Author: Juan Paulo Gutierrez <ju...@gmail.com>
AuthorDate: Wed Aug 1 09:53:52 2018 -0400

    ARROW-2955: Fix typo in pyarrow's HDFS API result
    
    Author: Juan Paulo Gutierrez <ju...@gmail.com>
    
    Closes #2354 from juanpaulo/master and squashes the following commits:
    
    b4be91d7 <Juan Paulo Gutierrez> ARROW-2955: Fix typo in pyarrow's HDFS API result
---
 python/pyarrow/io-hdfs.pxi | 4 ++--
 1 file changed, 2 insertions(+), 2 deletions(-)

diff --git a/python/pyarrow/io-hdfs.pxi b/python/pyarrow/io-hdfs.pxi
index 882cdf5..cf35413 100644
--- a/python/pyarrow/io-hdfs.pxi
+++ b/python/pyarrow/io-hdfs.pxi
@@ -288,8 +288,8 @@ cdef class HadoopFileSystem:
                     'name': name,
                     'owner': frombytes(info.owner),
                     'group': frombytes(info.group),
-                    'list_modified_time': info.last_modified_time,
-                    'list_access_time': info.last_access_time,
+                    'last_modified_time': info.last_modified_time,
+                    'last_access_time': info.last_access_time,
                     'size': info.size,
                     'replication': info.replication,
                     'block_size': info.block_size,