From 65ae48d1c7299e300d53e6df6ecac128a10288a0 Mon Sep 17 00:00:00 2001 From: Chris Larson Date: Wed, 13 Oct 2010 21:43:38 -0700 Subject: [PATCH] utils: fix popen->Popen reference Signed-off-by: Chris Larson --- classes/utils.bbclass | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/classes/utils.bbclass b/classes/utils.bbclass index 24ff321e71..acea01bd36 100644 --- a/classes/utils.bbclass +++ b/classes/utils.bbclass @@ -75,7 +75,7 @@ def oe_run(d, cmd, **kwargs): def oe_popen(d, cmd, **kwargs): import oe.process kwargs["env"] = oe_popen_env(d) - return oe.process.popen(cmd, **kwargs) + return oe.process.Popen(cmd, **kwargs) def oe_system(d, cmd, **kwargs): """ Popen based version of os.system. """ -- 2.39.5