diff options
author | Daniel Teichmann <daniel.teichmann@das-netzwerkteam.de> | 2021-07-06 17:38:14 +0200 |
---|---|---|
committer | Daniel Teichmann <daniel.teichmann@das-netzwerkteam.de> | 2021-07-06 17:38:14 +0200 |
commit | d93aba1c45c8c557282d00d5bceb27161f47955c (patch) | |
tree | 180762382c4f27131e121f300217be7cf42e995a | |
parent | 1d2b4cde363fea954d9203911a9ee07d23bade92 (diff) | |
download | RWA.Support.SessionService-d93aba1c45c8c557282d00d5bceb27161f47955c.tar.gz RWA.Support.SessionService-d93aba1c45c8c557282d00d5bceb27161f47955c.tar.bz2 RWA.Support.SessionService-d93aba1c45c8c557282d00d5bceb27161f47955c.zip |
test_client.py: Fix typo in docstring. url->host_uuid
-rwxr-xr-x | test_client.py | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/test_client.py b/test_client.py index bb54500..b646c4f 100755 --- a/test_client.py +++ b/test_client.py @@ -62,7 +62,7 @@ def add_web_app_host(host: str): @cli.command() @click.argument("host", type=str) def remove_web_app_host(host: str): - """Remove a RWA.Support.WebApp host. Requires <url>""" + """Remove a RWA.Support.WebApp host. Requires <host_uuid>""" click.echo(f"Sending D-Bus request 'remove_web_app_host': {host}") response = req.remove_web_app_host(host) click.echo(f"Your response is: {response}") |