Commit 4a0d7cd7 authored by davemachado's avatar davemachado
Browse files

convert char to upcase for sort check

parent c8525b2f
......@@ -47,7 +47,7 @@ File.foreach(filename).with_index do | line, line_num |
end
# char to check is the first char in the first column
check_char = line.split("|")[1].strip[0]
check_char = line.split("|")[1].strip[0].upcase
section_to_entries[section].push(check_char)
end
sections.each do | sect |
......
Supports Markdown
0% or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment