diff options
author | Paul Eggleton <paul.eggleton@linux.intel.com> | 2015-08-17 12:12:16 +0100 |
---|---|---|
committer | Richard Purdie <richard.purdie@linuxfoundation.org> | 2015-08-19 18:05:44 +0100 |
commit | 715d857174ceca82b85d6c8c7df520047ba7fb0c (patch) | |
tree | 363aac81a06b013471f1dede8ba4c0dc7d8bbe92 /bitbake/lib/bb/process.py | |
parent | 22a653d02880c35d3c9d04811c31aabdf1e69951 (diff) | |
download | poky-715d857174ceca82b85d6c8c7df520047ba7fb0c.tar.gz |
bitbake: Fix default function parameter assignment to a list
With python you should not assign a list as the default value of a
function parameter - because a list is mutable, the result will be that
the first time a value is passed it will actually modify the default.
Reference:
http://docs.python-guide.org/en/latest/writing/gotchas/#mutable-default-arguments
(Bitbake rev: 7859f7388f2e3f675d0e1527cfde18625f36f637)
Signed-off-by: Paul Eggleton <paul.eggleton@linux.intel.com>
Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org>
Diffstat (limited to 'bitbake/lib/bb/process.py')
-rw-r--r-- | bitbake/lib/bb/process.py | 5 |
1 files changed, 4 insertions, 1 deletions
diff --git a/bitbake/lib/bb/process.py b/bitbake/lib/bb/process.py index 7c797852ed..1c07f2d9b7 100644 --- a/bitbake/lib/bb/process.py +++ b/bitbake/lib/bb/process.py | |||
@@ -128,10 +128,13 @@ def _logged_communicate(pipe, log, input, extrafiles): | |||
128 | pipe.stderr.close() | 128 | pipe.stderr.close() |
129 | return ''.join(outdata), ''.join(errdata) | 129 | return ''.join(outdata), ''.join(errdata) |
130 | 130 | ||
131 | def run(cmd, input=None, log=None, extrafiles=[], **options): | 131 | def run(cmd, input=None, log=None, extrafiles=None, **options): |
132 | """Convenience function to run a command and return its output, raising an | 132 | """Convenience function to run a command and return its output, raising an |
133 | exception when the command fails""" | 133 | exception when the command fails""" |
134 | 134 | ||
135 | if not extrafiles: | ||
136 | extrafiles = [] | ||
137 | |||
135 | if isinstance(cmd, basestring) and not "shell" in options: | 138 | if isinstance(cmd, basestring) and not "shell" in options: |
136 | options["shell"] = True | 139 | options["shell"] = True |
137 | 140 | ||