From 543fc1727d31097d831e0ae38714ca1c73928936 Mon Sep 17 00:00:00 2001 From: Paul Beckingham Date: Fri, 3 Jul 2009 01:30:58 -0400 Subject: [PATCH] Bug Fix - Fixed bug in annotations that caused it to echo back the original description, instead of the new annotation, when adding a new annotation. --- src/command.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/command.cpp b/src/command.cpp index 77a9f0bc6..3281cffcb 100644 --- a/src/command.cpp +++ b/src/command.cpp @@ -1221,7 +1221,7 @@ std::string handleAnnotate () out << "Annotated " << task->id << " with '" - << task->get ("description") + << context.task.get ("description") << "'" << std::endl; }