1
0
mirror of https://github.com/kakwa/ldapcherry synced 2024-06-01 08:38:04 +02:00

pep8 compliance for launcher script

This commit is contained in:
kakwa 2015-07-13 10:23:34 +02:00
parent 53e4159ec9
commit 5a61868562

View File

@ -112,7 +112,8 @@ if __name__ == '__main__':
p.add_option('-e', '--environment', dest='environment', default=None, p.add_option('-e', '--environment', dest='environment', default=None,
help="apply the given config environment") help="apply the given config environment")
p.add_option('-f', action="store_true", dest='fastcgi', p.add_option('-f', action="store_true", dest='fastcgi',
help="start a fastcgi server instead of the default HTTP server") help="start a fastcgi server instead"
" of the default HTTP server")
p.add_option('-s', action="store_true", dest='scgi', p.add_option('-s', action="store_true", dest='scgi',
help="start a scgi server instead of the default HTTP server") help="start a scgi server instead of the default HTTP server")
p.add_option('-x', action="store_true", dest='cgi', p.add_option('-x', action="store_true", dest='cgi',
@ -138,4 +139,3 @@ if __name__ == '__main__':
start(options.config, options.daemonize, start(options.config, options.daemonize,
options.environment, options.fastcgi, options.scgi, options.environment, options.fastcgi, options.scgi,
options.pidfile, options.cgi) options.pidfile, options.cgi)