mirror of
https://github.com/openmc-dev/openmc.git
synced 2026-07-28 22:26:08 -04:00
Fix printing bug for tallies with AggregateNuclide
This commit is contained in:
parent
9849f2533e
commit
f139ce8dc1
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