Fix missing comma.

This commit is contained in:
Ian Joseph Wilson
2013-06-15 13:55:16 -07:00
parent 5e49c8674c
commit 5a56bf8ea5

View File

@@ -454,7 +454,7 @@ class Servos(object):
def write(self, pin, angle):
position = self.servo_pos[pin]
cmd_str = build_cmd_str("svw" (position, angle))
cmd_str = build_cmd_str("svw", (position, angle))
self.sr.write(cmd_str)
self.sr.flush()