| Index: gclient_utils.py
|
| diff --git a/gclient_utils.py b/gclient_utils.py
|
| index 9837cbb36c777dfdac67e4a7148dd5c48e1441b9..9c62a2a5b53af41b5aedae595bda06ecc61b1b77 100644
|
| --- a/gclient_utils.py
|
| +++ b/gclient_utils.py
|
| @@ -797,9 +797,11 @@ class ExecutionQueue(object):
|
| try:
|
| self.queued.append(d)
|
| total = len(self.queued) + len(self.ran) + len(self.running)
|
| + if self.jobs == 1:
|
| + total += 1
|
| logging.debug('enqueued(%s)' % d.name)
|
| if self.progress:
|
| - self.progress._total = total + 1
|
| + self.progress._total = total
|
| self.progress.update(0)
|
| self.ready_cond.notifyAll()
|
| finally:
|
|
|