[open-ils-commits] [GIT] Evergreen ILS branch master updated. 9dc177553046e2e704a3cd62a3c608c05c325abf

Evergreen Git git at git.evergreen-ils.org
Fri Aug 19 15:10:14 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, master has been updated
       via  9dc177553046e2e704a3cd62a3c608c05c325abf (commit)
      from  f4d868cf5bafb01dd52b22929aaba84eba469cfc (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 9dc177553046e2e704a3cd62a3c608c05c325abf
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