From 33c430a3cbb259719df2a7224a4b4db589e23539 Mon Sep 17 00:00:00 2001 From: Stein Magnus Jodal Date: Wed, 3 Apr 2013 10:37:49 +0200 Subject: [PATCH] spotify: Rename 'proxy_host' to 'proxy_hostname' for consistency --- mopidy/backends/spotify/__init__.py | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/mopidy/backends/spotify/__init__.py b/mopidy/backends/spotify/__init__.py index 0e32d4cd..b03849eb 100644 --- a/mopidy/backends/spotify/__init__.py +++ b/mopidy/backends/spotify/__init__.py @@ -28,7 +28,7 @@ timeout = 10 cache_path = $XDG_CACHE_DIR/mopidy/spotify # Connect to Spotify through a proxy -proxy_host = +proxy_hostname = proxy_username = proxy_password = """ @@ -81,7 +81,7 @@ class Extension(ext.Extension): schema['bitrate'] = config.Integer(choices=(96, 160, 320)) schema['timeout'] = config.Integer(minimum=0) schema['cache_path'] = config.String() - schema['proxy_host'] = config.Hostname(optional=True) + schema['proxy_hostname'] = config.Hostname(optional=True) schema['proxy_username'] = config.String(optional=True) schema['proxy_password'] = config.String(optional=True, secret=True) return schema