From c54e908ea3fb763e66ca2830eb8dbfab4567582c Mon Sep 17 00:00:00 2001 From: Jesse Luehrs Date: Sat, 8 Jun 2013 14:36:00 -0500 Subject: use run_one for all of these too --- lib/Reply.pm | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/lib/Reply.pm b/lib/Reply.pm index c3fa297..6f7adb2 100644 --- a/lib/Reply.pm +++ b/lib/Reply.pm @@ -154,7 +154,7 @@ sub _load_config { } for my $line (sort grep { /^script_line/ } keys %$root_config) { - $self->_eval($root_config->{$line}); + $self->run_one($root_config->{$line}); } if (defined(my $file = $root_config->{script_file})) { @@ -163,7 +163,7 @@ sub _load_config { local $/ = undef; <$fh> }; - $self->_eval($contents); + $self->run_one($contents); } } -- cgit v1.2.3-54-g00ecf