diff --git a/openmc/tallies.py b/openmc/tallies.py index 20e03129b5..9eef5f374f 100644 --- a/openmc/tallies.py +++ b/openmc/tallies.py @@ -195,7 +195,7 @@ class Tally(object): if isinstance(nuclide, openmc.Nuclide): string += nuclide.name + ' ' else: - string += nuclide + ' ' + string += str(nuclide) + ' ' string += '\n'