From 95d6cfd3679870b6d265640b23e7537d657458ea Mon Sep 17 00:00:00 2001 From: Jesse Luehrs Date: Mon, 3 Jun 2013 10:47:10 -0500 Subject: actually print the nopaste url --- lib/Reply/Plugin/Nopaste.pm | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/lib/Reply/Plugin/Nopaste.pm b/lib/Reply/Plugin/Nopaste.pm index d1205e1..1f64f85 100644 --- a/lib/Reply/Plugin/Nopaste.pm +++ b/lib/Reply/Plugin/Nopaste.pm @@ -66,14 +66,14 @@ sub command_nopaste { $line = "Reply session" unless length $line; - App::Nopaste->nopaste( + print App::Nopaste->nopaste( text => $self->{history}, desc => $line, lang => 'perl', (defined $self->{service} ? (services => [ $self->{service} ]) : ()), - ); + ) . "\n"; return ''; } -- cgit v1.2.3-54-g00ecf