From 537126b3d9a3d1b68dd5d42adeeaf43b577f7f5d Mon Sep 17 00:00:00 2001 From: rembo10 Date: Fri, 28 Mar 2014 11:17:29 -0700 Subject: [PATCH] Enable songkick by default because it's awesome --- headphones/__init__.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/headphones/__init__.py b/headphones/__init__.py index 0ec325b6..8a4637bc 100644 --- a/headphones/__init__.py +++ b/headphones/__init__.py @@ -583,7 +583,7 @@ def initialize(): TWITTER_PASSWORD = check_setting_str(CFG, 'Twitter', 'twitter_password', '') TWITTER_PREFIX = check_setting_str(CFG, 'Twitter', 'twitter_prefix', 'Headphones') - SONGKICK_ENABLED = bool(check_setting_int(CFG, 'Songkick', 'songkick_enabled', 0)) + SONGKICK_ENABLED = bool(check_setting_int(CFG, 'Songkick', 'songkick_enabled', 1)) SONGKICK_APIKEY = check_setting_str(CFG, 'Songkick', 'songkick_apikey', 'nd1We7dFW2RqxPw8') SONGKICK_LOCATION = check_setting_str(CFG, 'Songkick', 'songkick_location', '') SONGKICK_FILTER_ENABLED = bool(check_setting_int(CFG, 'Songkick', 'songkick_filter_enabled', 0))