Add missing import python.

It's possible to not declare the python tool in a config file. But the status tests require python to run the validation script. This adds the python import to declare default python execution rule. Which will allow it to work when python is generally available. And otherwise not cause errors.
This commit is contained in:
René Ferdinand Rivera Morell 2024-03-17 15:26:52 -05:00 committed by GitHub
parent 3c25ac6ce4
commit 2eafd5f71a
No known key found for this signature in database
GPG key ID: B5690EEEBB952194

View file

@ -59,6 +59,7 @@ import modules ;
import path ;
import feature ;
import numbers ;
import python ;
local check-libs-only = [ MATCH "^--(check-libs-only)" : [ modules.peek : ARGV ] ] ;
local no-check-libs = [ MATCH "^--(no-check-libs)$" : [ modules.peek : ARGV ] ] ;