From 9ed0fe88ce8ff3c6c86e30372b1341dbe4c629ef Mon Sep 17 00:00:00 2001 From: Dietmar Maurer Date: Mon, 24 Apr 2017 07:38:36 +0200 Subject: [PATCH] PVE/AbstractMigrate.pm: avoid locale specific time stamps --- PVE/AbstractMigrate.pm | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/PVE/AbstractMigrate.pm b/PVE/AbstractMigrate.pm index 8655d8b..4b974e6 100644 --- a/PVE/AbstractMigrate.pm +++ b/PVE/AbstractMigrate.pm @@ -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') {