Merge pull request #799 from smharper/aggregate_nuclide_print

Fix printing bug for tallies with AggregateNuclides
This commit is contained in:
Will Boyd 2017-02-24 15:38:25 -05:00 committed by GitHub
commit 60a1f157da

View file

@ -195,7 +195,7 @@ class Tally(object):
if isinstance(nuclide, openmc.Nuclide):
string += nuclide.name + ' '
else:
string += nuclide + ' '
string += str(nuclide) + ' '
string += '\n'