From c63355f2251f1fa303ddd09fa6239e7254a03ef6 Mon Sep 17 00:00:00 2001
From: Iustin Pop <iustin@google.com>
Date: Thu, 11 Mar 2010 16:31:04 +0100
Subject: [PATCH] Fix wrong indentation
MIME-Version: 1.0
Content-Type: text/plain; charset=UTF-8
Content-Transfer-Encoding: 8bit

Sorry…

Signed-off-by: Iustin Pop <iustin@google.com>
Reviewed-by: Michael Hanselmann <hansmi@google.com>
---
 lib/cli.py | 4 ++--
 1 file changed, 2 insertions(+), 2 deletions(-)

diff --git a/lib/cli.py b/lib/cli.py
index 92df9c581..55027890a 100644
--- a/lib/cli.py
+++ b/lib/cli.py
@@ -1860,8 +1860,8 @@ class JobExecutor(object):
     # first, remove any non-submitted jobs
     self.jobs, failures = utils.partition(self.jobs, lambda x: x[1])
     for idx, _, jid, name in failures:
-        ToStderr("Failed to submit job for %s: %s", name, jid)
-        results.append((idx, False, jid))
+      ToStderr("Failed to submit job for %s: %s", name, jid)
+      results.append((idx, False, jid))
 
     while self.jobs:
       (idx, _, jid, name) = self._ChooseJob()
-- 
GitLab