3
0
mirror of https://github.com/pragma-/pbot.git synced 2024-10-03 01:48:38 +02:00

Uh, fix weird typo

This commit is contained in:
Pragmatic Software 2017-09-21 11:52:45 -07:00
parent 339e677732
commit 346dcd3320

View File

@ -123,7 +123,7 @@ sub interpreter {
sub parse_arguments {
my ($self, $arguments) = @_;
my $args = quoetemeta $arguments;
my $args = quotemeta $arguments;
$args =~ s/\\ / /g;
return shellwords($args);
}