From d6370165223aa5da815dd1a69304a657ea1ee60b Mon Sep 17 00:00:00 2001 From: fbsanchez Date: Thu, 20 Oct 2016 15:09:44 +0200 Subject: [PATCH] Fixed module building - df_percent (windows) (cherry picked from commit b614a460e99bad354804a038baa34e444cb2c498) --- pandora_agents/win32/bin/util/df_percent.vbs | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/pandora_agents/win32/bin/util/df_percent.vbs b/pandora_agents/win32/bin/util/df_percent.vbs index 69029b66d4..4de5b1f1af 100644 --- a/pandora_agents/win32/bin/util/df_percent.vbs +++ b/pandora_agents/win32/bin/util/df_percent.vbs @@ -29,12 +29,13 @@ For Each objItem in colItems Wscript.StdOut.WriteLine "" Wscript.StdOut.WriteLine " " Wscript.StdOut.WriteLine " " - if (Percent > 99.99) then + If (Percent > 99.99) then Wscript.StdOut.WriteLine " " - elseif (Percent < 0.01) then + Elseif (Percent < 0.01) then Wscript.StdOut.WriteLine " " - else + Else Wscript.StdOut.WriteLine " " + End If Wscript.StdOut.WriteLine "%" Wscript.StdOut.WriteLine "5" Wscript.StdOut.WriteLine "10" @@ -42,7 +43,6 @@ For Each objItem in colItems Wscript.StdOut.WriteLine "5" Wscript.StdOut.WriteLine "" Wscript.StdOut.flush - End If End If End If