diff options
author | Luke Shumaker <lukeshu@lukeshu.com> | 2017-03-14 22:42:31 -0400 |
---|---|---|
committer | Luke Shumaker <lukeshu@lukeshu.com> | 2017-03-14 22:42:31 -0400 |
commit | 3f1da016d022ad0dfafebf81041842364a6081ec (patch) | |
tree | 6e436623af6348e74fdf855d82ce373c0dc2164d /lib | |
parent | 5a5547251f0a29bb41832e240f9f15cb5cf002bc (diff) |
Oh! The tags weren't working because case-conversion.
Diffstat (limited to 'lib')
-rw-r--r-- | lib/category.rb | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/lib/category.rb b/lib/category.rb index b60c82e..e0ed8e0 100644 --- a/lib/category.rb +++ b/lib/category.rb @@ -6,7 +6,7 @@ class Category @abbr = abbr end def abbr - @abbr + @abbr.downcase end def name Config::get.category_name(@abbr) |