Skip to content

Commit

Permalink
Fix bug in quaternion plotting example.
Browse files Browse the repository at this point in the history
Closes #3.
  • Loading branch information
JosephRedfern committed May 17, 2018
1 parent dd607a3 commit f3b44a0
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion examples/plot_quaternion.py
Original file line number Diff line number Diff line change
Expand Up @@ -37,7 +37,7 @@
print(pkt)

if isinstance(pkt, messages.Quaternion):
ts, x, y, z, w = pkt
ts, w, x, y, z = pkt
ts_points.append(ts)
w_points.append(w)
x_points.append(x)
Expand Down

0 comments on commit f3b44a0

Please sign in to comment.