Uh, fix weird typo

This commit is contained in:
Pragmatic Software 2017-09-21 11:52:45 -07:00
parent 339e677732
commit 346dcd3320
1 changed files with 1 additions and 1 deletions

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);
}