summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
-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 '';
}