From 4b5e62dbb22a3593e0db266c12f805b727a42b00 Mon Sep 17 00:00:00 2001 From: Pablo Aguiar Date: Thu, 1 Nov 2018 11:33:35 +0100 Subject: bpo-35128: Fix spacing issues in warning.warn() messages. (GH-10268) --- Lib/ftplib.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'Lib/ftplib.py') diff --git a/Lib/ftplib.py b/Lib/ftplib.py index 05840d49236..9611282ecac 100644 --- a/Lib/ftplib.py +++ b/Lib/ftplib.py @@ -732,7 +732,7 @@ else: "exclusive") if keyfile is not None or certfile is not None: import warnings - warnings.warn("keyfile and certfile are deprecated, use a" + warnings.warn("keyfile and certfile are deprecated, use a " "custom context instead", DeprecationWarning, 2) self.keyfile = keyfile self.certfile = certfile -- cgit v1.2.3