Fix printing bug for tallies with AggregateNuclide

This commit is contained in:
Sterling Harper 2017-02-24 15:01:21 -05:00
parent 9849f2533e
commit f139ce8dc1

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'