Skip to content

Commit

Permalink
Remove duplicated 'gunicorn' server option
Browse files Browse the repository at this point in the history
Before this, the 'run command' help shows 'guinicorn' two times:

 -s, --server                  [default|wsgiref|tornado|gunicorn|gevent|waitress|gunicorn|gunicornGevent|gevent|                                geventWebSocketServer|geventWs|wsgirefThreadingServer|wsgiTh|rocketServer]
  • Loading branch information
nicozanf authored Jul 23, 2024
1 parent c658a46 commit a007f14
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion py4web/core.py
Original file line number Diff line number Diff line change
Expand Up @@ -2089,7 +2089,7 @@ def new_app(apps_folder, app_name, yes, scaffold_zip):
"--server",
default="default",
type=click.Choice(
["default", "wsgiref", "tornado", "gunicorn", "gevent", "waitress"]
["default", "wsgiref", "tornado", "gevent", "waitress"]
+ server_adapters.__all__
),
help="Web server to use",
Expand Down

0 comments on commit a007f14

Please sign in to comment.