Skip to content

Commit

Permalink
Update src/tallies/tally.cpp
Browse files Browse the repository at this point in the history
Co-authored-by: Paul Romano <[email protected]>
  • Loading branch information
cjwyett and paulromano authored Aug 4, 2020
1 parent 585ec0f commit 4b0c9ea
Showing 1 changed file with 2 additions and 1 deletion.
3 changes: 2 additions & 1 deletion src/tallies/tally.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -240,7 +240,8 @@ score_str_to_int(std::string score_str)
try {
MT = std::stoi(score_str);
} catch (const std::invalid_argument& ex) {
throw std::invalid_argument("Invalid tally score \"" + score_str + "\" See the docs for details: https://docs.openmc.org/en/latest/usersguide/tallies.html#scores");
throw std::invalid_argument("Invalid tally score \"" + score_str + "\". See the docs "
"for details: https://docs.openmc.org/en/stable/usersguide/tallies.html#scores");
}
if (MT < 1)
throw std::invalid_argument("Invalid tally score \"" + score_str + "\". See the docs "
Expand Down

0 comments on commit 4b0c9ea

Please sign in to comment.