From 607baa081d3d00daaf841176e4785cc8db658278 Mon Sep 17 00:00:00 2001 From: Scott Mcdermott Date: Thu, 22 Jul 2021 20:02:09 -0700 Subject: [PATCH] CmdInfo: fix missing spaces causing run-on in virtual tag list without the fix, when listing out the tags we would see output like: Virtual tags PENDING PROJECTREADY TAGGED UDA UNBLOCKED there isn't a PROJECTREADY tag of course, but rather a missing space --- src/commands/CmdInfo.cpp | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/src/commands/CmdInfo.cpp b/src/commands/CmdInfo.cpp index c398d94b7..7b8d7da22 100644 --- a/src/commands/CmdInfo.cpp +++ b/src/commands/CmdInfo.cpp @@ -342,8 +342,8 @@ int CmdInfo::execute (std::string& output) if (task.hasTag ("PARENT")) virtualTags += "PARENT "; // 2017-01-07: Deprecated in 2.6.0 if (task.hasTag ("PENDING")) virtualTags += "PENDING "; if (task.hasTag ("PRIORITY")) virtualTags += "PRIORITY "; - if (task.hasTag ("PROJECT")) virtualTags += "PROJECT"; - if (task.hasTag ("QUARTER")) virtualTags += "QUARTER"; + if (task.hasTag ("PROJECT")) virtualTags += "PROJECT "; + if (task.hasTag ("QUARTER")) virtualTags += "QUARTER "; if (task.hasTag ("READY")) virtualTags += "READY "; if (task.hasTag ("SCHEDULED")) virtualTags += "SCHEDULED "; if (task.hasTag ("TAGGED")) virtualTags += "TAGGED ";