Skip to content

Commit

Permalink
Update character length limitation in 'url' field.
Browse files Browse the repository at this point in the history
  • Loading branch information
gha3mi committed Feb 6, 2024
1 parent 2d1412f commit cc89214
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions src/colormaps_info.f90
Original file line number Diff line number Diff line change
Expand Up @@ -143,7 +143,7 @@ impure subroutine write_info(this, verbose, file_name)
'a,','a', len_trim(this%package),',',25-len_trim(this%package)+2,'x',',',&
'a,','a', len_trim(this%author),',',15-len_trim(this%author)+2,'x',',',&
'a,','a', len_trim(this%license),',',18-len_trim(this%license)+2,'x',',',&
'a,','a', len_trim(this%url),',',30-len_trim(this%url)+2,'x',',a',&
'a,','a', len_trim(this%url),',',42-len_trim(this%url)+2,'x',',a',&
')'
open (newunit=nunit, file=trim(file_name), access='append', status='unknown', action='write')
write (nunit,format_table)&
Expand Down Expand Up @@ -182,7 +182,7 @@ impure subroutine write_info(this, verbose, file_name)
'a', len_trim(this%package),',',25-len_trim(this%package)+2,'x',',',&
'a', len_trim(this%author),',',15-len_trim(this%author)+2,'x',',',&
'a', len_trim(this%license),',',18-len_trim(this%license)+2,'x',',',&
'a', len_trim(this%url),',',30-len_trim(this%url)+2,'x',&
'a', len_trim(this%url),',',42-len_trim(this%url)+2,'x',&
')'
print (format_table),&
this%name,&
Expand Down

0 comments on commit cc89214

Please sign in to comment.