From 811d0e029d6ff27590b8c261d98956fd61bd0695 Mon Sep 17 00:00:00 2001 From: Paul Beckingham Date: Sun, 19 Oct 2014 23:54:08 -0400 Subject: [PATCH] Parser - UUIDs were being rejected because the contain commas, which are actually part of a UUID list. This meant that 'task $UUID1,$UUID2 info' failed. --- src/Parser.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/Parser.cpp b/src/Parser.cpp index bea915269..433c905ae 100644 --- a/src/Parser.cpp +++ b/src/Parser.cpp @@ -1416,7 +1416,7 @@ void Parser::findUUIDList () continue; // Easy disqualifiers. - if (raw.find_first_not_of ("0123456789abcdefABCDEF-") != std::string::npos) + if (raw.find_first_not_of ("0123456789abcdefABCDEF-,") != std::string::npos) break; Nibbler n (raw);