mirror of
https://github.com/pragma-/pbot.git
synced 2024-11-16 00:49:35 +01:00
Interpreter: restore preserve_escapes in make_args() to fix sed
Update factoids
This commit is contained in:
parent
0848cfcdd4
commit
04209e4b7e
BIN
data/factoids.sqlite3
vendored
BIN
data/factoids.sqlite3
vendored
Binary file not shown.
@ -1290,7 +1290,7 @@ sub split_line($self, $line, %opts) {
|
|||||||
sub make_args($self, $string, %opts) {
|
sub make_args($self, $string, %opts) {
|
||||||
my %default_opts = (
|
my %default_opts = (
|
||||||
keep_spaces => 1,
|
keep_spaces => 1,
|
||||||
preserve_escapes => 0,
|
preserve_escapes => 1,
|
||||||
);
|
);
|
||||||
|
|
||||||
%opts = (%default_opts, %opts);
|
%opts = (%default_opts, %opts);
|
||||||
|
@ -25,8 +25,8 @@ use PBot::Imports;
|
|||||||
# These are set by the /misc/update_version script
|
# These are set by the /misc/update_version script
|
||||||
use constant {
|
use constant {
|
||||||
BUILD_NAME => "PBot",
|
BUILD_NAME => "PBot",
|
||||||
BUILD_REVISION => 4755,
|
BUILD_REVISION => 4757,
|
||||||
BUILD_DATE => "2024-05-26",
|
BUILD_DATE => "2024-06-03",
|
||||||
};
|
};
|
||||||
|
|
||||||
sub initialize {}
|
sub initialize {}
|
||||||
|
Loading…
Reference in New Issue
Block a user