From: wmorgan Date: Sun, 28 Oct 2007 17:47:28 +0000 (+0000) Subject: minor label bugfix X-Git-Url: https://git.cworth.org/git?a=commitdiff_plain;h=fd9c57eba9f94db8179357094464820c6af15775;p=sup minor label bugfix git-svn-id: svn://rubyforge.org/var/svn/sup/trunk@642 5c8cc53c-5e98-4d25-b20a-d8db53a31250 --- diff --git a/lib/sup/label.rb b/lib/sup/label.rb index 39a682a..4afc0f9 100644 --- a/lib/sup/label.rb +++ b/lib/sup/label.rb @@ -32,7 +32,8 @@ class LabelManager ## nicely and converted to pretty strings. use #label_for to recover ## the original label. def listable_labels - LISTABLE_RESERVED_LABELS + @labels.keys + ## uniq's only necessary here because of certain upgrade issues + (LISTABLE_RESERVED_LABELS + @labels.keys).uniq end ## all apply-able (user-defined and system listable) labels, ordered