diff --git a/headphones/webstart.py b/headphones/webstart.py index 43626e4f..ffeaf279 100644 --- a/headphones/webstart.py +++ b/headphones/webstart.py @@ -105,10 +105,9 @@ def initialize(options=None): conf['/'].update({ 'tools.auth_basic.on': True, 'tools.auth_basic.realm': 'Headphones web server', - 'tools.auth_basic.checkpassword': cherrypy.lib.auth_basic \ - .checkpassword_dict({ - options['http_username']: options['http_password'] - }) + 'tools.auth_basic.checkpassword': cherrypy.lib.auth_basic.checkpassword_dict({ + options['http_username']: options['http_password'] + }) }) conf['/api'] = {'tools.auth_basic.on': False}