From 561b6303bccbce4e79f8da9a9069015ee45d3b53 Mon Sep 17 00:00:00 2001 From: Jesse Mullan Date: Sat, 1 Nov 2014 16:26:16 -0700 Subject: [PATCH] Fix spaces after a semicolon --- headphones/webstart.py | 7 +++---- 1 file changed, 3 insertions(+), 4 deletions(-) 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}