[oe-commits] Chris Larson : utils: fix popen->Popen reference

git version control git at git.openembedded.org
Thu Oct 14 04:46:29 UTC 2010


Module: openembedded.git
Branch: master
Commit: 65ae48d1c7299e300d53e6df6ecac128a10288a0
URL:    http://gitweb.openembedded.net/?p=openembedded.git&a=commit;h=65ae48d1c7299e300d53e6df6ecac128a10288a0

Author: Chris Larson <chris_larson at mentor.com>
Date:   Wed Oct 13 21:43:38 2010 -0700

utils: fix popen->Popen reference

Signed-off-by: Chris Larson <chris_larson at mentor.com>

---

 classes/utils.bbclass |    2 +-
 1 files changed, 1 insertions(+), 1 deletions(-)

diff --git a/classes/utils.bbclass b/classes/utils.bbclass
index 24ff321..acea01b 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. """





More information about the Openembedded-commits mailing list