diff options
author | Corneliu Stoicescu <corneliux.stoicescu@intel.com> | 2014-06-06 22:14:36 +0300 |
---|---|---|
committer | Richard Purdie <richard.purdie@linuxfoundation.org> | 2014-06-13 12:52:21 +0100 |
commit | 4bc02066c0b70e2815e9566f174a56e22e95b76d (patch) | |
tree | addb18335b2f0e69d7e35931de0527d092528199 | |
parent | a5aa889d63b9f076719166a3224153091d4ff9a0 (diff) | |
download | poky-4bc02066c0b70e2815e9566f174a56e22e95b76d.tar.gz |
oeqa/controllers/testtargetloader.py: add 'import os'
YB: #6254
This module uses os but relies on other modules to import it. Adding 'import os' in order to be self-sustained.
(From OE-Core rev: 26e4d5212ec5b2bcfdb0f42bbed31f468a17aca4)
Signed-off-by: Corneliu Stoicescu <corneliux.stoicescu@intel.com>
Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org>
-rw-r--r-- | meta/lib/oeqa/controllers/testtargetloader.py | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/meta/lib/oeqa/controllers/testtargetloader.py b/meta/lib/oeqa/controllers/testtargetloader.py index 019bbfd840..a1b7b1d92b 100644 --- a/meta/lib/oeqa/controllers/testtargetloader.py +++ b/meta/lib/oeqa/controllers/testtargetloader.py | |||
@@ -1,5 +1,6 @@ | |||
1 | import types | 1 | import types |
2 | import bb | 2 | import bb |
3 | import os | ||
3 | 4 | ||
4 | # This class is responsible for loading a test target controller | 5 | # This class is responsible for loading a test target controller |
5 | class TestTargetLoader: | 6 | class TestTargetLoader: |