diff mbox series

lib: oe: license: Add missing import

Message ID 20241126231458.2858039-1-JPEWhacker@gmail.com
State New
Headers show
Series lib: oe: license: Add missing import | expand

Commit Message

Joshua Watt Nov. 26, 2024, 11:14 p.m. UTC
The code in this file uses oe.qa, but it was not imported resulting an
an exception when a license error was detected

Signed-off-by: Joshua Watt <JPEWhacker@gmail.com>
---
 meta/lib/oe/license.py | 1 +
 1 file changed, 1 insertion(+)
diff mbox series

Patch

diff --git a/meta/lib/oe/license.py b/meta/lib/oe/license.py
index 32c77fa204d..6f882c3812c 100644
--- a/meta/lib/oe/license.py
+++ b/meta/lib/oe/license.py
@@ -7,6 +7,7 @@ 
 
 import ast
 import re
+import oe.qa
 from fnmatch import fnmatchcase as fnmatch
 
 def license_ok(license, dont_want_licenses):