mirror of
https://github.com/openmc-dev/openmc.git
synced 2026-07-28 14:15:42 -04:00
Merge pull request #799 from smharper/aggregate_nuclide_print
Fix printing bug for tallies with AggregateNuclides
This commit is contained in:
commit
60a1f157da
1 changed files with 1 additions and 1 deletions
|
|
@ -195,7 +195,7 @@ class Tally(object):
|
|||
if isinstance(nuclide, openmc.Nuclide):
|
||||
string += nuclide.name + ' '
|
||||
else:
|
||||
string += nuclide + ' '
|
||||
string += str(nuclide) + ' '
|
||||
|
||||
string += '\n'
|
||||
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue