Skip to content

Commit

Permalink
fixed shebang
Browse files Browse the repository at this point in the history
  • Loading branch information
jacobwilliams committed Dec 27, 2015
1 parent 4c4c30e commit 88c1ce0
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions src/pyplot_module.f90
Original file line number Diff line number Diff line change
Expand Up @@ -133,7 +133,7 @@ subroutine initialize(me, grid, xlabel, ylabel, zlabel, title, legend, use_numpy
character(len=max_int_len) :: ytick_labelsize_str !! size of x axis tick labels dummy string
character(len=max_int_len) :: ztick_labelsize_str !! size of z axis tick labels dummy string
character(len=max_int_len) :: legend_fontsize_str !! size of legend font dummy string

character(len=*), parameter :: default_font_size_str = '10' !! the default font size for plots

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

me%str = ''

call me%add_str('#!/usr/bin/python')
call me%add_str('#!/usr/bin/env python')
call me%add_str('')

call me%add_str('import matplotlib')
Expand Down

0 comments on commit 88c1ce0

Please sign in to comment.