| Index: gclient_utils.py | 
| diff --git a/gclient_utils.py b/gclient_utils.py | 
| index d0fa201b2addf676059286472c52b9d2a546a0d1..54d4e0ecf5ce374556006a502b0f05a3fd471361 100644 | 
| --- a/gclient_utils.py | 
| +++ b/gclient_utils.py | 
| @@ -745,17 +745,17 @@ class ExecutionQueue(object): | 
| try: | 
| self.item.run(*self.args, **self.kwargs) | 
| except KeyboardInterrupt: | 
| -        logging.info('Caught KeyboardInterrupt in thread %s' % self.item.name) | 
| +        logging.info('Caught KeyboardInterrupt in thread %s', self.item.name) | 
| logging.info(str(sys.exc_info())) | 
| work_queue.exceptions.put(sys.exc_info()) | 
| raise | 
| except Exception: | 
| # Catch exception location. | 
| -        logging.info('Caught exception in thread %s' % self.item.name) | 
| +        logging.info('Caught exception in thread %s', self.item.name) | 
| logging.info(str(sys.exc_info())) | 
| work_queue.exceptions.put(sys.exc_info()) | 
| finally: | 
| -        logging.info('_Worker.run(%s) done' % self.item.name) | 
| +        logging.info('_Worker.run(%s) done', self.item.name) | 
| work_queue.ready_cond.acquire() | 
| try: | 
| work_queue.ready_cond.notifyAll() | 
|  |