Putting full name of the variable, as Jodal asked

This commit is contained in:
Javier Domingo Cansino 2013-10-07 13:12:20 +02:00
parent 5b5bd342b6
commit 5d02b1a365

View File

@ -38,9 +38,9 @@ def outputs(context):
Shows information about all outputs.
"""
ena = 0 if context.core.playback.get_mute().get() else 1
enabled = 0 if context.core.playback.get_mute().get() else 1
return [
('outputid', 0),
('outputname', 'Default'),
('outputenabled', ena),
('outputenabled', enabled),
]