1
0
mirror of https://git.yoctoproject.org/poky synced 2026-06-03 13:49:49 +00:00

bitbake: Fix process.py to accept None as the log option

Signed-off-by: Richard Purdie <rpurdie@linux.intel.com>
This commit is contained in:
Richard Purdie
2011-01-05 00:49:57 +00:00
parent e9f4ed0173
commit 03679364a9
+1 -1
View File
@@ -92,7 +92,7 @@ def run(cmd, input=None, **options):
options["shell"] = True
log = options.get('log')
if log:
if 'log' in options:
del options['log']
try: