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

@@ -6,6 +6,10 @@ version 3.26 ()
* Add fan and psu reporting to Layer3::Dell
[BUG FIXES]
* Fix typo in MRO::print_superclasses
version 3.25 (2015-02-25)
[ENHANCEMENTS]

View File

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