diff options
-rw-r--r-- | website/helpers.py | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/website/helpers.py b/website/helpers.py index aa20c5b..36d1cb4 100644 --- a/website/helpers.py +++ b/website/helpers.py @@ -20,7 +20,7 @@ def scilab_run(code, token, book_id, dependency_exists): plot_exists = False #Finding the plot and appending xs2jpg function - p = re.compile(r'.*plot.*\(.*\).*\n|bode\(.*\)') + p = re.compile(r'.*plot.*\(.*\).*\n|bode\(.*\)|evans\(.*\)') plot_path = '' if p.search(code): |