Fix spaces after a semicolon

This commit is contained in:
Jesse Mullan
2014-11-01 16:26:16 -07:00
parent 4d85878921
commit 561b6303bc
+3 -4
View File
@@ -105,10 +105,9 @@ def initialize(options=None):
conf['/'].update({ conf['/'].update({
'tools.auth_basic.on': True, 'tools.auth_basic.on': True,
'tools.auth_basic.realm': 'Headphones web server', 'tools.auth_basic.realm': 'Headphones web server',
'tools.auth_basic.checkpassword': cherrypy.lib.auth_basic \ 'tools.auth_basic.checkpassword': cherrypy.lib.auth_basic.checkpassword_dict({
.checkpassword_dict({ options['http_username']: options['http_password']
options['http_username']: options['http_password'] })
})
}) })
conf['/api'] = {'tools.auth_basic.on': False} conf['/api'] = {'tools.auth_basic.on': False}