From 23cdaa6f3dfb8cd30ddae38c6b078ece93afd696 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Do=C4=9Fukan=20Arat?= Date: Sat, 13 Apr 2019 20:34:12 +0300 Subject: [PATCH] error fixed SyntaxError: Missing parentheses in call to 'print' --- quadPlot.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/quadPlot.py b/quadPlot.py index 1bf19f1..ef58ce6 100644 --- a/quadPlot.py +++ b/quadPlot.py @@ -35,7 +35,7 @@ def plot_quad_3d(waypoints, get_world_frame): frames=400, interval=10, blit=False) if len(sys.argv) > 1 and sys.argv[1] == 'save': - print "saving" + print("saving") an.save('sim.gif', dpi=80, writer='imagemagick', fps=60) else: plt.show()