Fix stupid mistake in output.set_position that should have been chaught by the tests we don't have for output...

This commit is contained in:
Thomas Adamcik 2010-08-25 22:15:50 +02:00
parent c7218e87e2
commit e250884fd6

View File

@ -72,7 +72,7 @@ class GStreamerOutput(BaseOutput):
return self._send_recv({'command': 'get_position'})
def set_position(self, position):
return self._send_recv({'command': 'set_position'})
return self._send_recv({'command': 'set_position', 'position': position})
def set_state(self, state):
return self._send_recv({'command': 'set_state', 'state': state})