Subject: | 'p' may not be default alias for Data::Printer |
Reply::Plugin::DataPrinter assumes that C<use Data::Printer> establishes the alias p() in the current package. This is the default behavior of Data::Printer, but can be changed in the .datprinter config file. The desired alias can be assured by specifying it:
--- DataPrinter.pm~ 2013-06-07 23:45:25.000000000 -0400
+++ DataPrinter.pm 2013-06-07 23:51:55.000000000 -0400
@@ -11,7 +11,7 @@
use base 'Reply::Plugin';
-use Data::Printer;
+use Data::Printer alias => 'p';
sub mangle_result {
Thanks for an intriguing distribution!