audio: Fix event handler's argument name

Every emit of this event caused an invisible exception in every audio
listener (e.g. core). The exception was made visible by the change in
the previous commit.
This commit is contained in:
Stein Magnus Jodal 2015-02-09 00:09:15 +01:00
parent 655b7badf4
commit dfe27a0918

View File

@ -37,7 +37,7 @@ class AudioListener(listener.Listener):
"""
pass
def position_changed(self, position_changed):
def position_changed(self, position):
"""
Called whenever the position of the stream changes.