From c442144dc5ac1787071be9ab2f5265b0c358f954 Mon Sep 17 00:00:00 2001 From: Davis Mosenkovs Date: Sat, 30 May 2015 16:15:43 +0300 Subject: [PATCH] Link to Alarm Clock: fix flake8 E501 --- mopidy_musicbox_webclient/web.py | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) diff --git a/mopidy_musicbox_webclient/web.py b/mopidy_musicbox_webclient/web.py index 80dd677..7fc9090 100644 --- a/mopidy_musicbox_webclient/web.py +++ b/mopidy_musicbox_webclient/web.py @@ -45,7 +45,9 @@ class IndexHandler(tornado.web.RequestHandler): 'version': MusicBoxExtension.version, 'musicbox': int(ext_config['musicbox'] or False), 'websocket_url': ws_url, - 'alarmclock': int('alarmclock' in config and 'enabled' in config['alarmclock'] and config['alarmclock']['enabled']) + 'alarmclock': int('alarmclock' in config and + 'enabled' in config['alarmclock'] and + config['alarmclock']['enabled']) } self.__path = path