From 520aba9828daf9fa3303b933f477053b4742dc90 Mon Sep 17 00:00:00 2001 From: James E Keenan Date: Thu, 29 Mar 2018 18:31:14 -0400 Subject: [PATCH] Remove 'our' from one non-Exporter-related variable. --- dist/Exporter/lib/Exporter.pm | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/dist/Exporter/lib/Exporter.pm b/dist/Exporter/lib/Exporter.pm index f9ccd26..0e8775d 100644 --- a/dist/Exporter/lib/Exporter.pm +++ b/dist/Exporter/lib/Exporter.pm @@ -354,7 +354,7 @@ will give the module an opportunity to handle the situation before generating an error. The Exporter will call an export_fail method with a list of the failed symbols: - our @failed_symbols = $module_name->export_fail(@failed_symbols); + @failed_symbols = $module_name->export_fail(@failed_symbols); If the C method returns an empty list then no error is recorded and all the requested symbols are exported. If the returned -- 1.8.3.1