From: Yann E. MORIN Date: Sat, 19 Jul 2014 13:56:09 +0000 (+0200) Subject: support/gen-manual-lists.py: remove unneeded arg in private function X-Git-Url: https://git.libre-soc.org/?a=commitdiff_plain;h=34363f0df1da4e69ae663fc43d7c8a1a980c0bb8;p=buildroot.git support/gen-manual-lists.py: remove unneeded arg in private function No need to pass as argument to a function, members of the class it's in. Signed-off-by: "Yann E. MORIN" Cc: Samuel Martin Acked-by: Samuel Martin Signed-off-by: Thomas Petazzoni --- diff --git a/support/scripts/gen-manual-lists.py b/support/scripts/gen-manual-lists.py index 69f4c7edbd..483b3847e0 100644 --- a/support/scripts/gen-manual-lists.py +++ b/support/scripts/gen-manual-lists.py @@ -384,7 +384,7 @@ class Buildroot: return s return None - def _get_providers(config, symbol): + def _get_providers(symbol): providers = list() for sym in self.config: if not sym.is_symbol(): @@ -404,7 +404,7 @@ class Buildroot: + " (w/ " + l + ")" providers.append(l) else: - providers.extend(_get_providers(config,sym)) + providers.extend(_get_providers(sym)) return providers if what == "layout": @@ -415,7 +415,7 @@ class Buildroot: if what == "symbol": pkg = re.sub(r"^BR2_PACKAGE_HAS_(.+)$", r"\1", symbol.get_name()) - providers = _get_providers(self.config, symbol) + providers = _get_providers(symbol) return "| {0:<20} <| {1:<32} <| {2}\n".format(pkg.lower(), '+' + symbol.get_name() + '+',