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

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: