modules: fix insult.pl printing @ARGV without spaces

This commit is contained in:
Pragmatic Software 2019-08-21 11:07:52 -07:00
parent 6115d73639
commit de84ce48ff
1 changed files with 1 additions and 1 deletions

View File

@ -9,7 +9,7 @@ use LWP::Simple;
$_ = get("http://www.randominsults.net/");
if (/<strong><i>(.*?)\s*<\/i><\/strong>/) {
print @ARGV,': ' if @ARGV;
print "@ARGV",': ' if @ARGV;
print "$1\n";
}
else {