Skip to content
Open
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
6 changes: 3 additions & 3 deletions augur/application/cli/__init__.py
Original file line number Diff line number Diff line change
Expand Up @@ -33,14 +33,14 @@ def new_func(ctx, *args, **kwargs):
print(traceback.format_exc())

if not success:
print(
raise click.ClickException(
f"""
\n\n{usage} command setup failed.
{usage} command setup failed.
There was an error while testing for network connectivity
Please check your connection to the internet to run Augur
Consider setting http_proxy variables for limited access installations."""
)
sys.exit(-1)


return ctx.invoke(function_internet_connection, *args, **kwargs)

Expand Down
Loading