Skip to content

Commit

Permalink
Update RTF.py
Browse files Browse the repository at this point in the history
Changed column width to 10.
  • Loading branch information
tclick committed Jul 9, 2018
1 parent da8599c commit 81e163b
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/fluctmatch/topology/RTF.py
Original file line number Diff line number Diff line change
Expand Up @@ -124,7 +124,7 @@ def _write_residues(self, residue):
# Write the bond, angle, dihedral, and improper dihedral lines.
for key, value in self.bonds:
attr, n_perline = value
fmt = key + n_perline * "%6s"
fmt = key + n_perline * "%10s"
try:
bonds = getattr(atoms, attr)
if len(bonds) == 0:
Expand Down

0 comments on commit 81e163b

Please sign in to comment.