diff options
| -rw-r--r-- | bitbake/lib/bb/ui/knotty.py | 5 |
1 files changed, 4 insertions, 1 deletions
diff --git a/bitbake/lib/bb/ui/knotty.py b/bitbake/lib/bb/ui/knotty.py index b02e59c1fe..a520895da2 100644 --- a/bitbake/lib/bb/ui/knotty.py +++ b/bitbake/lib/bb/ui/knotty.py | |||
| @@ -272,7 +272,10 @@ class TerminalFilter(object): | |||
| 272 | tasks.append("%s (pid %s)" % (activetasks[t]["title"], activetasks[t]["pid"])) | 272 | tasks.append("%s (pid %s)" % (activetasks[t]["title"], activetasks[t]["pid"])) |
| 273 | 273 | ||
| 274 | if self.main.shutdown: | 274 | if self.main.shutdown: |
| 275 | content = "Waiting for %s running tasks to finish:" % len(activetasks) | 275 | content = pluralise("Waiting for %s running task to finish", |
| 276 | "Waiting for %s running tasks to finish", len(activetasks)) | ||
| 277 | if not self.quiet: | ||
| 278 | content += ':' | ||
| 276 | print(content) | 279 | print(content) |
| 277 | else: | 280 | else: |
| 278 | if self.quiet: | 281 | if self.quiet: |
