From 88c1ce059f805bdd55dca51220daa881f38ba7bf Mon Sep 17 00:00:00 2001 From: Jacob Williams Date: Sun, 27 Dec 2015 00:02:09 -0600 Subject: [PATCH] fixed shebang --- src/pyplot_module.f90 | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/src/pyplot_module.f90 b/src/pyplot_module.f90 index 2029488..884d320 100644 --- a/src/pyplot_module.f90 +++ b/src/pyplot_module.f90 @@ -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() @@ -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')