summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorChris Larson <chris_larson@mentor.com>2010-10-13 21:43:38 -0700
committerChris Larson <chris_larson@mentor.com>2010-10-13 21:43:58 -0700
commit65ae48d1c7299e300d53e6df6ecac128a10288a0 (patch)
tree0ed396a8837e635314b5e1ded6444349c430d96d
parent130ff506b5b0346c8fe6b18ec6388f78518b21e2 (diff)
downloadopenembedded-65ae48d1c7299e300d53e6df6ecac128a10288a0.tar.gz
utils: fix popen->Popen reference
Signed-off-by: Chris Larson <chris_larson@mentor.com>
-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. """