mirror of
git://git.yoctoproject.org/layerindex-web.git
synced 2025-07-19 12:49:01 +02:00
update.py: hide DeprecationWarnings
These are just annoying if the script is called from a cron job. Signed-off-by: Paul Eggleton <paul.eggleton@linux.intel.com>
This commit is contained in:
parent
8b6b40018a
commit
157656cec9
|
@ -20,6 +20,9 @@ from distutils.version import LooseVersion
|
||||||
import utils
|
import utils
|
||||||
import recipeparse
|
import recipeparse
|
||||||
|
|
||||||
|
import warnings
|
||||||
|
warnings.filterwarnings("ignore", category=DeprecationWarning)
|
||||||
|
|
||||||
logger = utils.logger_create('LayerIndexUpdate')
|
logger = utils.logger_create('LayerIndexUpdate')
|
||||||
|
|
||||||
# Ensure PythonGit is installed (buildhistory_analysis needs it)
|
# Ensure PythonGit is installed (buildhistory_analysis needs it)
|
||||||
|
|
Loading…
Reference in New Issue
Block a user