From 46fa0d52b3fb48e5974ddc28e8cd1e66e8199fa7 Mon Sep 17 00:00:00 2001 From: Pragmatic Software Date: Tue, 14 Oct 2014 02:30:57 +0000 Subject: [PATCH] Minor code formatting improvement --- PBot/Interpreter.pm | 8 ++++---- PBot/VERSION.pm | 2 +- 2 files changed, 5 insertions(+), 5 deletions(-) diff --git a/PBot/Interpreter.pm b/PBot/Interpreter.pm index 1ac3b46a..2a085949 100644 --- a/PBot/Interpreter.pm +++ b/PBot/Interpreter.pm @@ -31,11 +31,11 @@ sub initialize { $self->{pbot} = delete $conf{pbot} // Carp::croak("Missing pbot reference to " . __FILE__); - $self->{pbot}->{registry}->add_default('text', 'general', 'show_url_titles', $conf{show_url_titles} // 1); - $self->{pbot}->{registry}->add_default('array', 'general', 'show_url_titles_channels', $conf{show_url_titles_channels} // '.*'); + $self->{pbot}->{registry}->add_default('text', 'general', 'show_url_titles', $conf{show_url_titles} // 1); + $self->{pbot}->{registry}->add_default('array', 'general', 'show_url_titles_channels', $conf{show_url_titles_channels} // '.*'); $self->{pbot}->{registry}->add_default('array', 'general', 'show_url_titles_ignore_channels', $conf{show_url_titles_ignore_channels} // 'none'); - $self->{pbot}->{registry}->add_default('text', 'general', 'compile_blocks', $conf{compile_blocks} // 1); - $self->{pbot}->{registry}->add_default('array', 'general', 'compile_blocks_channels', $conf{compile_blocks_channels} // '.*'); + $self->{pbot}->{registry}->add_default('text', 'general', 'compile_blocks', $conf{compile_blocks} // 1); + $self->{pbot}->{registry}->add_default('array', 'general', 'compile_blocks_channels', $conf{compile_blocks_channels} // '.*'); $self->{pbot}->{registry}->add_default('array', 'general', 'compile_blocks_ignore_channels', $conf{compile_blocks_ignore_channels} // 'none'); $self->{pbot}->{registry}->add_default('text', 'interpreter', 'max_recursion', 10); } diff --git a/PBot/VERSION.pm b/PBot/VERSION.pm index 5aa857de..7136aeea 100644 --- a/PBot/VERSION.pm +++ b/PBot/VERSION.pm @@ -13,7 +13,7 @@ use warnings; # These are set automatically by the build/commit script use constant { BUILD_NAME => "PBot", - BUILD_REVISION => 791, + BUILD_REVISION => 792, BUILD_DATE => "2014-10-13", };