5
0
mirror of git://git.proxmox.com/git/pve-guest-common.git synced 2025-03-12 20:58:20 +03:00

PVE/AbstractMigrate.pm: avoid locale specific time stamps

This commit is contained in:
Dietmar Maurer 2017-04-24 07:38:36 +02:00
parent c033210fa5
commit 9ed0fe88ce

View File

@ -14,7 +14,7 @@ my $msg2text = sub {
my $res = '';
my $tstr = strftime("%b %d %H:%M:%S", localtime);
my $tstr = strftime("%F %H:%M:%S", localtime);
foreach my $line (split (/\n/, $msg)) {
if ($level eq 'err') {