Bug 17600: Standardize our EXPORT_OK
[srvgit] / misc / cronjobs / reconcile_balances.pl
index 0202de9..4c55836 100755 (executable)
@@ -51,19 +51,19 @@ Makes the process print information about the taken actions.
 
 use Modern::Perl;
 
-use Getopt::Long;
-use Pod::Usage;
-use Try::Tiny;
+use Getopt::Long qw( GetOptions );
+use Pod::Usage qw( pod2usage );
+use Try::Tiny qw( catch try );
 
 BEGIN {
     # find Koha's Perl modules
     # test carefully before changing this
-    use FindBin;
+    use FindBin ();
     eval { require "$FindBin::Bin/../kohalib.pl" };
 }
 
 use Koha::Script -cron;
-use C4::Log;
+use C4::Log qw( cronlogaction );
 
 use Koha::Account::Lines;
 use Koha::Patrons;