Skip to content
Snippets Groups Projects
Commit 353fa218 authored by Olivier Bertrand's avatar Olivier Bertrand
Browse files

Forgot line returns

parent 2eb0b84b
No related branches found
No related tags found
No related merge requests found
...@@ -158,8 +158,8 @@ def main(): ...@@ -158,8 +158,8 @@ def main():
# Configure matplotlib to use agg # Configure matplotlib to use agg
# because import tkinter fail # because import tkinter fail
tfile.write('# Configure matplotlib to use agg\n'.encode(encoding)) tfile.write('# Configure matplotlib to use agg\n'.encode(encoding))
tfile.write('import matplotlib'.encode(encoding)) tfile.write('import matplotlib\n'.encode(encoding))
tfile.write("matplotlib.use('agg')".encode(encoding)) tfile.write("matplotlib.use('agg')\n".encode(encoding))
tfile.write('# run simulation\n'.encode(encoding)) tfile.write('# run simulation\n'.encode(encoding))
with open(python_script) as infile: with open(python_script) as infile:
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment