3
0
mirror of https://github.com/pragma-/pbot.git synced 2024-10-04 18:38:47 +02:00

Add newline to "also known as" output to improve formatting in pastes

This commit is contained in:
Pragmatic Software 2014-08-11 07:33:05 +00:00
parent 321fdc401c
commit c40e34b3a1
2 changed files with 2 additions and 2 deletions

View File

@ -87,7 +87,7 @@ sub list_also_known_as {
my @akas = $self->{database}->get_also_known_as(@$args[0]); my @akas = $self->{database}->get_also_known_as(@$args[0]);
if(@akas) { if(@akas) {
my $result = "@$args[0] also known as: "; my $result = "@$args[0] also known as:\n";
my %uniq; my %uniq;
foreach my $aka (@akas) { foreach my $aka (@akas) {

View File

@ -13,7 +13,7 @@ use warnings;
# These are set automatically by the build/commit script # These are set automatically by the build/commit script
use constant { use constant {
BUILD_NAME => "PBot", BUILD_NAME => "PBot",
BUILD_REVISION => 773, BUILD_REVISION => 774,
BUILD_DATE => "2014-08-11", BUILD_DATE => "2014-08-11",
}; };