keithfancher / todo-indicator

Ubuntu app indicator for todo.txt-style todo lists
GNU General Public License v3.0
48 stars 8 forks source link

White spaces #1

Closed sonjli closed 10 years ago

sonjli commented 10 years ago

Hi, when I click on an item with spaces at the end of the line (or at the beginning, but it's less common mistake) the file is not update with an "x". I think this is because in "_check_off_item_with_label" the check with the file line is made without "strip". I made these chages and everything goes right: old line 120: if line.strip() == label: modified line 120: if line.strip() == label.strip():

I hope this helps. Thanks for the good and useful script!

keithfancher commented 10 years ago

Hey, thanks! I just pushed your fix.