Fix typo in MRO::print_superclasses

This commit is contained in:
Oliver Gorwits
2015-02-28 21:13:38 +00:00
parent 73d713b670
commit 8dfe9ef1cf
2 changed files with 6 additions and 2 deletions

View File

@@ -4,7 +4,11 @@ version 3.26 ()
[ENHANCEMENTS] [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) version 3.25 (2015-02-25)

View File

@@ -363,7 +363,7 @@ Pretty print the output of C<superclasses()>.
=cut =cut
sub print_superclasses { sub print_superclasses {
print join ("\n", (shift)->superclasses), "\n"; print join ("\n", superclasses(@_)), "\n";
} }
=back =back