From: <cl...@us...> - 2003-03-09 18:48:17
|
Update of /cvsroot/todo-manager/todo-manager In directory sc8-pr-cvs1:/tmp/cvs-serv15483 Modified Files: main.py Log Message: Groups with characters outside of the ASCII range no longer cause an exception Index: main.py =================================================================== RCS file: /cvsroot/todo-manager/todo-manager/main.py,v retrieving revision 1.70 retrieving revision 1.71 diff -u -d -r1.70 -r1.71 --- main.py 6 Mar 2003 05:15:59 -0000 1.70 +++ main.py 9 Mar 2003 18:48:12 -0000 1.71 @@ -812,7 +812,9 @@ # If a group was specified get all tasks in that group if group and (group != 'ALL'): + group = unicode_to_utf8(group) new_tasks = [] + for t in tasks: if group in t["Group"]: new_tasks.append(t) |