From: Brian Dolbec Date: Tue, 25 Jan 2011 17:01:53 +0000 (-0800) Subject: fix a missed function rename for an assignment X-Git-Tag: gentoolkit-0.3.0~18 X-Git-Url: http://git.tremily.us/?a=commitdiff_plain;h=c4ac46444d929107df5f7ec531526221976a97b8;p=gentoolkit.git fix a missed function rename for an assignment --- 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 """