diff options
Diffstat (limited to 'bitbake/lib/bb/ui/knotty.py')
| -rw-r--r-- | bitbake/lib/bb/ui/knotty.py | 4 |
1 files changed, 4 insertions, 0 deletions
diff --git a/bitbake/lib/bb/ui/knotty.py b/bitbake/lib/bb/ui/knotty.py index 2e9c6f3f22..4d87a3d7cd 100644 --- a/bitbake/lib/bb/ui/knotty.py +++ b/bitbake/lib/bb/ui/knotty.py | |||
| @@ -228,6 +228,10 @@ def main(server, eventHandler): | |||
| 228 | 228 | ||
| 229 | logger.error("Unknown event: %s", event) | 229 | logger.error("Unknown event: %s", event) |
| 230 | 230 | ||
| 231 | except EnvironmentError as ioerror: | ||
| 232 | # ignore interrupted io | ||
| 233 | if ioerror.args[0] == 4: | ||
| 234 | pass | ||
| 231 | except KeyboardInterrupt: | 235 | except KeyboardInterrupt: |
| 232 | if shutdown == 2: | 236 | if shutdown == 2: |
| 233 | print("\nThird Keyboard Interrupt, exit.\n") | 237 | print("\nThird Keyboard Interrupt, exit.\n") |
