From: Zac Medico Date: Sun, 4 May 2008 01:48:04 +0000 (-0000) Subject: Fix spelling of _show_unsatisfied_blockers(). X-Git-Tag: v2.2_pre6~19 X-Git-Url: http://git.tremily.us/?a=commitdiff_plain;h=fc1891c8e446152601b6fbf4d377a76b5a70c6e9;p=portage.git Fix spelling of _show_unsatisfied_blockers(). svn path=/main/trunk/; revision=10151 --- diff --git a/pym/_emerge/__init__.py b/pym/_emerge/__init__.py index b5385f506..ed04bc267 100644 --- a/pym/_emerge/__init__.py +++ b/pym/_emerge/__init__.py @@ -3906,7 +3906,7 @@ class depgraph(object): display_list.reverse() self.display(display_list) - def _show_unsatisied_blockers(self, blockers): + def _show_unsatisfied_blockers(self, blockers): self._show_merge_list() msg = "Error: The above package list contains " + \ "packages which cannot be installed " + \ @@ -4609,7 +4609,7 @@ class depgraph(object): # The user is only notified of a slot conflict if # there are no unresolvable blocker conflicts. if self._unsatisfied_blockers_for_display is not None: - self._show_unsatisied_blockers( + self._show_unsatisfied_blockers( self._unsatisfied_blockers_for_display) else: self._show_slot_collision_notice()