summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorJesse Luehrs <doy@tozt.net>2013-06-03 10:47:10 -0500
committerJesse Luehrs <doy@tozt.net>2013-06-03 10:47:10 -0500
commit95d6cfd3679870b6d265640b23e7537d657458ea (patch)
treec8e4ad2b59e892855130526f4d1aafdeca69966a
parent4257cfd2a9f2132edfcd37eea1ef41cf18296ae9 (diff)
downloadreply-95d6cfd3679870b6d265640b23e7537d657458ea.tar.gz
reply-95d6cfd3679870b6d265640b23e7537d657458ea.zip
actually print the nopaste url
-rw-r--r--lib/Reply/Plugin/Nopaste.pm4
1 files 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 '';
}