From 1693c364e39db626685e7f449059440fe9e7c763 Mon Sep 17 00:00:00 2001 From: Andrs Montaez Date: Thu, 24 Nov 2011 19:48:13 -0200 Subject: [PATCH] More tweaks on the output. --- Mage/Task/Deploy.php | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/Mage/Task/Deploy.php b/Mage/Task/Deploy.php index 5871f90..b8178a8 100644 --- a/Mage/Task/Deploy.php +++ b/Mage/Task/Deploy.php @@ -39,10 +39,10 @@ class Mage_Task_Deploy $result = $task->run(); if ($result == true) { - Mage_Console::output(' OK', 0); + Mage_Console::output('OK', 0); $completedTasks++; } else { - Mage_Console::output(' FAIL', 0); + Mage_Console::output('FAIL', 0); } } @@ -84,10 +84,10 @@ class Mage_Task_Deploy $result = $task->run(); if ($result == true) { - Mage_Console::output(' OK', 0); + Mage_Console::output('OK', 0); $completedTasks++; } else { - Mage_Console::output(' FAIL', 0); + Mage_Console::output('FAIL', 0); } }