Fix mistake

This commit is contained in:
Christophe Maudoux 2018-08-29 13:25:46 +02:00
parent 9c509b2c99
commit a116cf1141

View File

@ -73,7 +73,7 @@ sub enabledPlugins {
# TODO: change this name
if ( $conf->{customPlugins} ) {
$self->logger->debug( 'Custom plugins: ' . $conf->{customPlugins} );
push @res, grep ( /\w/, split( /,\s*/, $conf->{customPlugins} ) );
push @res, grep ( /\w+/, split( /,\s*/, $conf->{customPlugins} ) );
}
return @res;
}