From: Zac Medico Date: Sun, 4 May 2008 01:48:25 +0000 (-0000) Subject: Fix spelling of _show_unsatisfied_blockers(). (trunk r10151) X-Git-Tag: v2.1.5~72 X-Git-Url: http://git.tremily.us/?a=commitdiff_plain;h=d6d77ced87cf7e6e553915dfef9cf1c5098b45ef;p=portage.git Fix spelling of _show_unsatisfied_blockers(). (trunk r10151) svn path=/main/branches/2.1.2/; revision=10152 --- diff --git a/bin/emerge b/bin/emerge index 92e321021..604b4f125 100755 --- a/bin/emerge +++ b/bin/emerge @@ -4055,7 +4055,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 " + \ @@ -4764,7 +4764,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()