Corrected a syntax error in a gettext usage

This commit is contained in:
John Wiegley 2009-03-24 17:35:31 -04:00
parent 0918f9d4f5
commit 025af3c189

View file

@ -753,7 +753,7 @@ void budget_posts::report_budget_items(const date_t& date)
optional<date_t> begin = pair.first.start;
if (! begin) {
if (! pair.first.find_period(date))
throw_(std::runtime_error, _()"Something odd has happened");
throw_(std::runtime_error, _("Something odd has happened"));
begin = pair.first.start;
}
assert(begin);