Skip to content

Commit

Permalink
Merge pull request #25 from BerkeleyLab/fix-file_t-line-wrap
Browse files Browse the repository at this point in the history
Fix: eliminate line wrap in file_t write_lines
  • Loading branch information
rouson authored Oct 27, 2024
2 parents 022e441 + 4e09b77 commit 814fa6a
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion fpm.toml
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
name = "julienne"
version = "1.5.1"
version = "1.5.3"
license = "license"
author = "Damian Rouson, Brad Richardson, Patrick Raynaud, Katherine Rasmussen"
maintainer = "rouson@lbl.gov"
Expand Down
2 changes: 1 addition & 1 deletion src/julienne/julienne_file_s.f90
Original file line number Diff line number Diff line change
Expand Up @@ -29,7 +29,7 @@
end if

do l = 1, size(self%lines_)
write(file_unit, *) self%lines_(l)%string()
write(file_unit, '(a)') self%lines_(l)%string()
end do

if (present(file_name)) close(file_unit)
Expand Down

0 comments on commit 814fa6a

Please sign in to comment.