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

WebPaste: fix syntax error

This commit is contained in:
Pragmatic Software 2020-02-03 13:02:08 -08:00
parent 66201585fe
commit f8ffe2214a

View File

@ -21,7 +21,7 @@ use Carp ();
use Encode; use Encode;
sub new { sub new {
Carp::croak("Options to " . __FILE__ . " should be key/value pairs, not hash reference" if ref($_[1]) eq 'HASH'; Carp::croak("Options to " . __FILE__ . " should be key/value pairs, not hash reference") if ref($_[1]) eq 'HASH';
my ($class, %conf) = @_; my ($class, %conf) = @_;
my $self = bless {}, $class; my $self = bless {}, $class;
$self->initialize(%conf); $self->initialize(%conf);