Skip to content

Commit

Permalink
fix: join int (#17)
Browse files Browse the repository at this point in the history
this fixes #16
  • Loading branch information
njzjz authored Apr 3, 2019
1 parent 9986594 commit a433d63
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion aimdfragmentation/frag.py
Original file line number Diff line number Diff line change
Expand Up @@ -266,7 +266,7 @@ def _takeforce(self):
kbodyforces[i][kbodyerroratoms[i]
] = self.fold[kbodyerroratoms[i]][:, 3:6]
logging.info(
f"Atom {' '.join(kbodyerroratoms[i])} use(s) the old {i}-body forces.")
f"Atom {' '.join(map(str, kbodyerroratoms[i]))} use(s) the old {i}-body forces.")
finalforces = np.sum(kbodyforces, axis=0)
finalenergies = np.sum(kbodyenergies)
# Make the resultant force equal to 0
Expand Down

0 comments on commit a433d63

Please sign in to comment.