diff options
author | Enrico Jörns <ejo@pengutronix.de> | 2023-03-31 12:26:22 +0200 |
---|---|---|
committer | Richard Purdie <richard.purdie@linuxfoundation.org> | 2023-03-31 23:30:36 +0100 |
commit | d59756912cd450b0af3d8893b822c66dafe42544 (patch) | |
tree | f3e36f71bb14de19619d05200feb337282996fa8 /meta/lib/oeqa/utils/commands.py | |
parent | 4651c42cabd3c3a165589d2a7f1d26f41e81a0b8 (diff) | |
download | poky-d59756912cd450b0af3d8893b822c66dafe42544.tar.gz |
oeqa: whitespace and indentation cleanups
(From OE-Core rev: 4922221d1259e2f78233f17bb901cdac5b9aa520)
Signed-off-by: Enrico Jorns <ejo@pengutronix.de>
Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org>
Diffstat (limited to 'meta/lib/oeqa/utils/commands.py')
-rw-r--r-- | meta/lib/oeqa/utils/commands.py | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/meta/lib/oeqa/utils/commands.py b/meta/lib/oeqa/utils/commands.py index 9b07227f12..c1f533802e 100644 --- a/meta/lib/oeqa/utils/commands.py +++ b/meta/lib/oeqa/utils/commands.py | |||
@@ -115,7 +115,7 @@ class Command(object): | |||
115 | else: | 115 | else: |
116 | deadline = time.time() + self.timeout | 116 | deadline = time.time() + self.timeout |
117 | for thread in self.threads: | 117 | for thread in self.threads: |
118 | timeout = deadline - time.time() | 118 | timeout = deadline - time.time() |
119 | if timeout < 0: | 119 | if timeout < 0: |
120 | timeout = 0 | 120 | timeout = 0 |
121 | thread.join(timeout) | 121 | thread.join(timeout) |