summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorBrian Dolbec <brian.dolbec@gmail.com>2011-01-25 09:01:53 -0800
committerBrian Dolbec <brian.dolbec@gmail.com>2011-01-25 09:01:53 -0800
commitc4ac46444d929107df5f7ec531526221976a97b8 (patch)
treef24a0583e28ea0cad69fc014e530ac72864b823d
parent9ec42c9f0e5ba0d0f2439b08a25263df2d367dfa (diff)
downloadgentoolkit-c4ac46444d929107df5f7ec531526221976a97b8.tar.gz
fix a missed function rename for an assignment
-rw-r--r--pym/gentoolkit/analyse/output.py6
1 files changed, 3 insertions, 3 deletions
diff --git a/pym/gentoolkit/analyse/output.py b/pym/gentoolkit/analyse/output.py
index 85ee391..b0ed943 100644
--- a/pym/gentoolkit/analyse/output.py
+++ b/pym/gentoolkit/analyse/output.py
@@ -49,13 +49,13 @@ class AnalysisPrinter(CpvValueWrapper):
self.print_fn = self.print_keyword_verbose
else:
self.print_fn = self.print_keyword_quiet
- self._format_key = self._format_key_
+ self._format_key = self._format_use_keyword
elif target in ["packages"]:
if verbose:
self.print_fn = self.print_pkg_verbose
else:
self.print_fn = self.print_pkg_quiet
- self._format_key = self._format_pkg_
+ self._format_key = self._format_pkg
def __call__(self, key, active, data):
self._format_key(key, active, data)
@@ -131,7 +131,7 @@ class AnalysisPrinter(CpvValueWrapper):
# W0613: *Unused argument %r*
# pylint: disable-msg=W0613
- def _format_pkg_(self, key, active, flags):
+ def _format_pkg(self, key, active, flags):
"""Determines the stats for key, formats it and
calls the pre-determined print function
"""