Skip to content

Commit 88c1ce0

Browse files
committed
fixed shebang
1 parent 4c4c30e commit 88c1ce0

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

src/pyplot_module.f90

+2-2
Original file line numberDiff line numberDiff line change
@@ -133,7 +133,7 @@ subroutine initialize(me, grid, xlabel, ylabel, zlabel, title, legend, use_numpy
133133
character(len=max_int_len) :: ytick_labelsize_str !! size of x axis tick labels dummy string
134134
character(len=max_int_len) :: ztick_labelsize_str !! size of z axis tick labels dummy string
135135
character(len=max_int_len) :: legend_fontsize_str !! size of legend font dummy string
136-
136+
137137
character(len=*), parameter :: default_font_size_str = '10' !! the default font size for plots
138138

139139
call me%destroy()
@@ -182,7 +182,7 @@ subroutine initialize(me, grid, xlabel, ylabel, zlabel, title, legend, use_numpy
182182

183183
me%str = ''
184184

185-
call me%add_str('#!/usr/bin/python')
185+
call me%add_str('#!/usr/bin/env python')
186186
call me%add_str('')
187187

188188
call me%add_str('import matplotlib')

0 commit comments

Comments
 (0)