utils: fix popen->Popen reference
authorChris Larson <chris_larson@mentor.com>
Thu, 14 Oct 2010 04:43:38 +0000 (21:43 -0700)
committerChris Larson <chris_larson@mentor.com>
Thu, 14 Oct 2010 04:43:58 +0000 (21:43 -0700)
Signed-off-by: Chris Larson <chris_larson@mentor.com>
classes/utils.bbclass

index 24ff321..acea01b 100644 (file)
@@ -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. """