Fix NameError introduced by 23e664df05

This commit is contained in:
Ibiam Chihurumnaya 2019-07-24 08:00:26 -04:00 committed by Rahul Bothra
parent 23e664df05
commit b74c3570d5

View File

@ -209,7 +209,7 @@ class SpeechManager(GObject.GObject):
if not self.enabled(): if not self.enabled():
return return
self.player = _GstSpeechPlayer() self.player = GstSpeechPlayer()
self.player.connect('play', self._update_state, 'play') self.player.connect('play', self._update_state, 'play')
self.player.connect('stop', self._update_state, 'stop') self.player.connect('stop', self._update_state, 'stop')
self.player.connect('pause', self._update_state, 'pause') self.player.connect('pause', self._update_state, 'pause')