From 744b1467ccd3598247a8bbad28074c27170275cb Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Uwe=20Kleine-K=C3=B6nig?= Date: Tue, 4 Jun 2024 11:39:05 +0200 Subject: [PATCH] api: Add missing \n in error message --- pwclient/api.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/pwclient/api.py b/pwclient/api.py index 3817935..79a885d 100644 --- a/pwclient/api.py +++ b/pwclient/api.py @@ -440,7 +440,7 @@ def __init__(self, server, *, username=None, password=None, token=None): f"Automatically converted XML-RPC URL to REST API URL. This " f"is deprecated behavior and will be removed in a future " f"release. Update your pwclientrc to use the following URL: " - f"{scheme}://{hostname}/api" + f"{scheme}://{hostname}/api\n" ) path = '/api'