Skip to content

Commit

Permalink
Fix printing bug for tallies with AggregateNuclide
Browse files Browse the repository at this point in the history
  • Loading branch information
smharper committed Feb 24, 2017
1 parent 9849f25 commit f139ce8
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion openmc/tallies.py
Expand Up @@ -195,7 +195,7 @@ def __repr__(self):
if isinstance(nuclide, openmc.Nuclide):
string += nuclide.name + ' '
else:
string += nuclide + ' '
string += str(nuclide) + ' '

string += '\n'

Expand Down

0 comments on commit f139ce8

Please sign in to comment.