Corrected an error message

This commit is contained in:
John Wiegley 2012-02-26 15:52:19 -06:00
parent aa9b07d79b
commit 7553df5600

View file

@ -196,7 +196,7 @@ std::size_t journal_t::read(const path& pathname,
if (! exists(filename))
throw_(std::runtime_error,
_("Cannot read journal file '%1'") << filename);
_("Cannot read journal file %1") << filename);
ifstream stream(filename);
std::size_t count = read(stream, filename, master_account, scope);