We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 080d6f0 commit feeb264Copy full SHA for feeb264
Changes
@@ -3,6 +3,7 @@
3
2.04 2025-03-25
4
5
- merged three pull requests, removing the internal Pod::PlainText
6
+- fixed Github: Relies on formatter to inherit from Exporter #17
7
8
9
2.03 2022-05-21
lib/Pod/Usage.pm
@@ -15,7 +15,7 @@ require 5.006; ## requires this Perl version or later
15
16
use Carp;
17
use Config;
18
-use Exporter;
+use Exporter qw(import);
19
use File::Spec;
20
21
our $VERSION = '2.04';
@@ -26,7 +26,7 @@ BEGIN {
26
$Pod::Usage::Formatter ||= 'Pod::Text';
27
eval "require $Pod::Usage::Formatter";
28
die $@ if $@;
29
- @ISA = ( $Pod::Usage::Formatter );
+ @ISA = ( $Pod::Usage::Formatter, 'Exporter' );
30
}
31
32
our $MAX_HEADING_LEVEL = 3;
0 commit comments