mirror of
https://github.com/rembo10/headphones.git
synced 2026-07-21 16:34:01 +01:00
Fix spaces after a semicolon
This commit is contained in:
@@ -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}
|
||||||
|
|
||||||
|
|||||||
Reference in New Issue
Block a user