1
0
Fork 0
mirror of https://github.com/munin-monitoring/contrib.git synced 2025-07-25 02:18:08 +00:00

Unify file encodings to UTF8

This commit is contained in:
Lars Kruse 2020-08-25 15:53:00 +02:00
parent 3674882662
commit 3bc9396918
21 changed files with 24 additions and 24 deletions

View file

@ -126,7 +126,7 @@ sub save_data {
# Push the hash values on to the array
foreach ( keys %$hashref ) {
push @save_vector, $_ . '¬' . $hashref->{$_};
push @save_vector, $_ . '¬' . $hashref->{$_};
}
$::logger->info(
@ -148,7 +148,7 @@ sub load_data {
my $hashref;
foreach (@save_vector) {
my ( $key, $value ) = split /¬/;
my ( $key, $value ) = split /¬/;
$hashref->{$key} = $value;
}
my $force_save = 0;