Bug #433 - Missing punctuation in some command output

- Missed something in Filter.cpp
This commit is contained in:
Cory Donnelly 2010-07-21 11:55:56 -04:00
parent 1528fdc7e1
commit 3ec8d2fece

View file

@ -144,7 +144,7 @@ void Filter::applySequence (std::vector<Task>& all, Sequence& sequence)
foreach (r, right) foreach (r, right)
out << " " << *r; out << " " << *r;
out << " not found"; out << " not found.";
throw out.str (); throw out.str ();
} }
} }