Cosmetics: Add TODO: prefix to todo.txt do message on already done task.

This commit is contained in:
Ingo Karkat
2011-05-10 12:07:50 +02:00
committed by Gina Trapani
parent 32c84781d2
commit c14788e764
2 changed files with 2 additions and 2 deletions

View File

@@ -81,6 +81,6 @@ test_todo_session 'fail multiple do attempts' <<EOF
TODO: 3 marked as done. TODO: 3 marked as done.
>>> todo.sh -a do 3 >>> todo.sh -a do 3
3 is already marked done TODO: 3 is already marked done.
EOF EOF
test_done test_done

View File

@@ -966,7 +966,7 @@ case $action in
echo "TODO: $item marked as done." echo "TODO: $item marked as done."
fi fi
else else
echo "$item is already marked done" echo "TODO: $item is already marked done."
fi fi
done done