From 1bfe160fa1050c189364e2dec5d018f3ac91a670 Mon Sep 17 00:00:00 2001 From: Richard Purdie Date: Sun, 22 May 2016 16:06:20 +0100 Subject: scripts/oe-selftest: Remove inadvertant python3 specific change Signed-off-by: Richard Purdie --- scripts/oe-selftest | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/scripts/oe-selftest b/scripts/oe-selftest index 900b3f4873..00ef51f516 100755 --- a/scripts/oe-selftest +++ b/scripts/oe-selftest @@ -442,7 +442,7 @@ def main(): bbpath = get_bb_var('BBPATH').split(':') layer_libdirs = [p for p in (os.path.join(l, 'lib') for l in bbpath) if os.path.exists(p)] sys.path.extend(layer_libdirs) - imp.reload(oeqa.selftest) + reload(oeqa.selftest) if args.run_tests_by and len(args.run_tests_by) >= 2: valid_options = ['name', 'class', 'module', 'id', 'tag'] -- cgit 1.2.3-korg