Chromium Code Reviews| Index: gclient_utils.py | 
| diff --git a/gclient_utils.py b/gclient_utils.py | 
| index 64f4dcb28ba2cb69bf71abc2eb4152f1bf6f164c..97c8227c097370f2e933f759a5a268e752d72020 100644 | 
| --- a/gclient_utils.py | 
| +++ b/gclient_utils.py | 
| @@ -660,7 +660,7 @@ class ExecutionQueue(object): | 
| self.running.append(t) | 
| else: | 
| t.join() | 
| - sys.stdout.full_flush() | 
| + sys.stdout.full_flush() # pylint: disable=E1101 | 
| if self.progress: | 
| self.progress.update(1, t.item.name) | 
| assert not t.item.name in self.ran |