From 5d02b1a3655f591614f17b93befdbb7d6d60d0a4 Mon Sep 17 00:00:00 2001 From: Javier Domingo Cansino Date: Mon, 7 Oct 2013 13:12:20 +0200 Subject: [PATCH] Putting full name of the variable, as Jodal asked --- mopidy/frontends/mpd/protocol/audio_output.py | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/mopidy/frontends/mpd/protocol/audio_output.py b/mopidy/frontends/mpd/protocol/audio_output.py index 4dfb148e..5a4d45c1 100644 --- a/mopidy/frontends/mpd/protocol/audio_output.py +++ b/mopidy/frontends/mpd/protocol/audio_output.py @@ -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), ]