summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorJesse Luehrs <doy@tozt.net>2013-06-08 10:56:21 -0500
committerJesse Luehrs <doy@tozt.net>2013-06-08 10:57:56 -0500
commit9066aaf302c5cf99fd558e057a58a70f39291a05 (patch)
tree290da9df25930badf94e297e910f991f576d3f22
parent3f90aea66675b0bc2224d16992390a6bb69accd4 (diff)
downloadreply-9066aaf302c5cf99fd558e057a58a70f39291a05.tar.gz
reply-9066aaf302c5cf99fd558e057a58a70f39291a05.zip
ensure the printer function is named properly (Charles Bailey)
-rw-r--r--Changes2
-rw-r--r--lib/Reply/Plugin/DataPrinter.pm2
2 files changed, 3 insertions, 1 deletions
diff --git a/Changes b/Changes
index 22ffcd3..eed0e6d 100644
--- a/Changes
+++ b/Changes
@@ -2,6 +2,8 @@ Revision history for Reply
{{$NEXT}}
- add Timer plugin (Arthur Axel fREW Schmidt)
+ - fix DataPrinter plugin when ~/.dataprinter has a custom value for
+ 'alias' (Charles Bailey)
0.05 2013-06-04
- avoid test failures from DataPrinter, since it's optional
diff --git a/lib/Reply/Plugin/DataPrinter.pm b/lib/Reply/Plugin/DataPrinter.pm
index 88a3b27..ce68b75 100644
--- a/lib/Reply/Plugin/DataPrinter.pm
+++ b/lib/Reply/Plugin/DataPrinter.pm
@@ -5,7 +5,7 @@ use warnings;
use base 'Reply::Plugin';
-use Data::Printer;
+use Data::Printer alias => 'p';
=head1 SYNOPSIS