Corrected a syntax error in a gettext usage
This commit is contained in:
parent
0918f9d4f5
commit
025af3c189
1 changed files with 1 additions and 1 deletions
|
|
@ -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);
|
||||
|
|
|
|||
Loading…
Add table
Reference in a new issue