From: Richard Purdie Date: Wed, 5 Jan 2011 00:49:57 +0000 (+0000) Subject: bitbake: Fix process.py to accept None as the log option X-Git-Tag: 2011-1~3034 X-Git-Url: https://code.ossystems.io/gitweb?a=commitdiff_plain;h=03679364a9e280af24ba7038dce54272eb33af83;p=openembedded-core.git bitbake: Fix process.py to accept None as the log option Signed-off-by: Richard Purdie --- diff --git a/bitbake/lib/bb/process.py b/bitbake/lib/bb/process.py index 0e19cbe8de..fd7f28d7a0 100644 --- a/bitbake/lib/bb/process.py +++ b/bitbake/lib/bb/process.py @@ -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: