mirror of
https://github.com/GothenburgBitFactory/taskwarrior.git
synced 2025-06-26 10:54:26 +02:00
Bug
- Fixed problem where 'project' was not supported as a verbosity token (thanks to Adam Gibbins).
This commit is contained in:
parent
deb12102f6
commit
80d6655709
17 changed files with 35 additions and 17 deletions
|
@ -452,7 +452,8 @@ bool Context::verbose (const std::string& token)
|
|||
verbosity[0] != "new-id" && //
|
||||
verbosity[0] != "affected" && //
|
||||
verbosity[0] != "edit" && //
|
||||
verbosity[0] != "special") //
|
||||
verbosity[0] != "special" && //
|
||||
verbosity[0] != "project") //
|
||||
{
|
||||
verbosity.clear ();
|
||||
|
||||
|
@ -464,6 +465,7 @@ bool Context::verbose (const std::string& token)
|
|||
verbosity.push_back ("affected");
|
||||
verbosity.push_back ("edit");
|
||||
verbosity.push_back ("special");
|
||||
verbosity.push_back ("project");
|
||||
}
|
||||
}
|
||||
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue