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

DualIndexSQLiteObject: improve formatting of set output

This commit is contained in:
Pragmatic Software 2020-05-02 15:00:57 -07:00
parent ec7eb3828d
commit aee7f706c7

View File

@ -756,7 +756,7 @@ sub set {
push @metadata, "$key => $value" if defined $value;
}
if (not @metadata) { $result .= "none"; }
else { $result .= join '; ', @metadata; }
else { $result .= join ";\n", @metadata; }
return $result;
}