diff options
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) |