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

Interpreter: minor quote change

This commit is contained in:
Pragmatic Software 2020-02-16 10:46:26 -08:00
parent 394fc4d083
commit 212ae97122

View File

@ -173,7 +173,7 @@ sub process_line {
sub interpret {
my ($self, $stuff) = @_;
my ($keyword, $arguments) = ("", "");
my ($keyword, $arguments) = ('', '');
my $text;
my $pbot = $self->{pbot};
@ -223,7 +223,7 @@ sub interpret {
} else {
# normal command
($keyword, $arguments) = $self->split_args($cmdlist, 2, 0, 1);
$arguments = "" if not defined $arguments;
$arguments = '' if not defined $arguments;
}
# FIXME: make this a registry item