[open-ils-commits] r8793 - branches/acq-experiment/Open-ILS/src/perlmods/OpenILS/Utils

svn at svn.open-ils.org svn at svn.open-ils.org
Tue Feb 19 20:01:38 EST 2008


Author: erickson
Date: 2008-02-19 19:31:18 -0500 (Tue, 19 Feb 2008)
New Revision: 8793

Modified:
   branches/acq-experiment/Open-ILS/src/perlmods/OpenILS/Utils/CStoreEditor.pm
Log:
fixed typo and return type error

Modified: branches/acq-experiment/Open-ILS/src/perlmods/OpenILS/Utils/CStoreEditor.pm
===================================================================
--- branches/acq-experiment/Open-ILS/src/perlmods/OpenILS/Utils/CStoreEditor.pm	2008-02-20 00:27:37 UTC (rev 8792)
+++ branches/acq-experiment/Open-ILS/src/perlmods/OpenILS/Utils/CStoreEditor.pm	2008-02-20 00:31:18 UTC (rev 8793)
@@ -463,9 +463,9 @@
         push(@ids, 0+$_->{object_id}) for @$list;
     }
 
-   my %trim
+   my %trim;
    $trim{$_} = 1 for @ids;
-   return keys %trim;
+   return [ keys %trim ];
 }
 
 



More information about the open-ils-commits mailing list