[open-ils-commits] [GIT] Evergreen ILS branch rel_2_1 updated. cab014e5494c5d998bb12d59efd513041573594e

Evergreen Git git at git.evergreen-ils.org
Fri Aug 19 15:10:31 EDT 2011


This is an automated email from the git hooks/post-receive script. It was
generated because a ref change was pushed to the repository containing
the project "Evergreen ILS".

The branch, rel_2_1 has been updated
       via  cab014e5494c5d998bb12d59efd513041573594e (commit)
      from  667ff193d7f85d6a01c823b8bfd5ee64f80f9a51 (commit)

Those revisions listed above that are new to this repository have
not appeared on any other notification email; so we list those
revisions in full, below.

- Log -----------------------------------------------------------------
commit cab014e5494c5d998bb12d59efd513041573594e
Author: Ben Shum <bshum at biblio.org>
Date:   Tue Aug 2 11:15:57 2011 -0400

    #LP801961, error when running edi_fetcher.pl
    
    This patch addresses an error encountered when running edi_fetcher.pl.
    The method "is_dir" should be just plain "dir" in RemoteAccount.pm file.
    Signed-off-by: Ben Shum <bshum at biblio.org>
    
    Signed-off-by: Mike Rylander <mrylander at gmail.com>

diff --git a/Open-ILS/src/perlmods/lib/OpenILS/Utils/RemoteAccount.pm b/Open-ILS/src/perlmods/lib/OpenILS/Utils/RemoteAccount.pm
index d8c399c..164e227 100644
--- a/Open-ILS/src/perlmods/lib/OpenILS/Utils/RemoteAccount.pm
+++ b/Open-ILS/src/perlmods/lib/OpenILS/Utils/RemoteAccount.pm
@@ -612,7 +612,7 @@ sub ls_ftp {   # returns full path like: dir/path/file.ext
             next;
         }
         if ($dirtarget and $dirtarget ne '.' and $dirtarget ne './' and
-            $self->_ftp->is_dir($dirtarget)) {
+            $self->_ftp->dir($dirtarget)) {
             foreach my $file (@part) {   # we ensure full(er) path
                 $file =~ /^$dirtarget\// and next;
                 $logger->debug("ls_ftp: prepending $dirtarget/ to $file");

-----------------------------------------------------------------------

Summary of changes:
 .../perlmods/lib/OpenILS/Utils/RemoteAccount.pm    |    2 +-
 1 files changed, 1 insertions(+), 1 deletions(-)


hooks/post-receive
-- 
Evergreen ILS


More information about the open-ils-commits mailing list