diff --git a/ChangeLog b/ChangeLog index 8411ab1c..38a1df06 100644 --- a/ChangeLog +++ b/ChangeLog @@ -4,7 +4,11 @@ version 3.26 () [ENHANCEMENTS] - * Add fan and psu reporting to Layer3::Dell + * Add fan and psu reporting to Layer3::Dell + + [BUG FIXES] + + * Fix typo in MRO::print_superclasses version 3.25 (2015-02-25) diff --git a/Info/MRO.pm b/Info/MRO.pm index 80d60f03..3780a1ea 100644 --- a/Info/MRO.pm +++ b/Info/MRO.pm @@ -363,7 +363,7 @@ Pretty print the output of C. =cut sub print_superclasses { - print join ("\n", (shift)->superclasses), "\n"; + print join ("\n", superclasses(@_)), "\n"; } =back