Fixed list outputs method in GStreamer class

This commit is contained in:
Thomas Adamcik 2011-05-16 21:55:00 +02:00
parent 2174723620
commit 94efb083ee

View File

@ -280,7 +280,7 @@ class GStreamer(ThreadingActor):
logger.info('Added %s', output.get_name())
def list_outputs(self):
return self._outputs.keys()
return [output.get_name() for output in self._outputs]
def remove_output(self, output):
logger.debug('Trying to remove %s', output.get_name())