Skip to content

Commit b6af8f6

Browse files
committed
Slight wording change in output
1 parent 7615c84 commit b6af8f6

File tree

1 file changed

+3
-3
lines changed

1 file changed

+3
-3
lines changed

gramps_webapi/__main__.py

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -84,7 +84,7 @@ def cli(ctx, config):
8484
help="Maximum number of workers for frontend; requires --use-wsgi",
8585
default=None,
8686
)
87-
@click.option("--use-wsgi", is_flag=True, help="Add a wsgi wrapper around server")
87+
@click.option("--use-wsgi", is_flag=True, help="Add a WSGI wrapper around the server")
8888
@click.pass_context
8989
def run(
9090
ctx, port, tree, host, open_browser, debug_level, log_file, max_workers, use_wsgi
@@ -112,7 +112,7 @@ def open_webbrowser_after_start():
112112
app.logger.addHandler(file_handler)
113113
app.logger.setLevel(debug_level)
114114

115-
print("Running gramps-web-api server...")
115+
print("Running Gramps Web API server...")
116116
if open_browser != "no":
117117
print(
118118
f" Opening gramps-web in browser {open_browser} on http://{host}:{port}..."
@@ -133,7 +133,7 @@ def open_webbrowser_after_start():
133133
else:
134134
app.run(port=port, threaded=True)
135135
print()
136-
print("Stopping gramps-web-api server...")
136+
print("Stopping Gramps Web API server...")
137137

138138

139139
@cli.group("user", help="Manage users.")

0 commit comments

Comments
 (0)