Bug 17600: Standardize our EXPORT_OK
[srvgit] / misc / cronjobs / cart_to_shelf.pl
index 414f6e3..264e933 100755 (executable)
@@ -29,18 +29,18 @@ use strict;
 use warnings;
 
 use Koha::Script -cron;
-use C4::Items qw/ CartToShelf /;
-use C4::Log;
+use C4::Items qw( CartToShelf );
+use C4::Log qw( cronlogaction );
 
 BEGIN {
 
     # find Koha's Perl modules
     # test carefully before changing this
-    use FindBin;
+    use FindBin ();
     eval { require "$FindBin::Bin/../kohalib.pl" };
 }
 use C4::Context;
-use Getopt::Long;
+use Getopt::Long qw( GetOptions );
 
 my $hours = 0;