From 95ffecfd05279c73e147a51b5ecde53ce81e2732 Mon Sep 17 00:00:00 2001 From: Lord Hepipud Date: Wed, 30 Oct 2019 17:53:57 +0100 Subject: [PATCH] Fixes time span date output --- lib/core/tools/ConvertFrom-TimeSpan.psm1 | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/lib/core/tools/ConvertFrom-TimeSpan.psm1 b/lib/core/tools/ConvertFrom-TimeSpan.psm1 index 0369ece..d6cc444 100644 --- a/lib/core/tools/ConvertFrom-TimeSpan.psm1 +++ b/lib/core/tools/ConvertFrom-TimeSpan.psm1 @@ -9,7 +9,7 @@ function ConvertFrom-TimeSpan() $TimeSpan = [TimeSpan]::FromSeconds($Seconds); return [string]::Format( - 'Days: {0} Hours: {1} Minutes: {2} Seconds: {3}', + '{0}d {1}h {2}m {3}s', $TimeSpan.Days, $TimeSpan.Hours, $TimeSpan.Minutes,