aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
-rw-r--r--classes/utils.bbclass2
1 files changed, 1 insertions, 1 deletions
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. """