From 1c9ca00a63a64d17805a050538c65047927fb584 Mon Sep 17 00:00:00 2001 From: Daniele Varrazzo Date: Thu, 13 Jun 2024 10:09:44 +0100 Subject: [PATCH] fix: typo Co-authored-by: Denis Laxalde --- psycopg/psycopg/errors.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/psycopg/psycopg/errors.py b/psycopg/psycopg/errors.py index ed6c23814..f3ba7d056 100644 --- a/psycopg/psycopg/errors.py +++ b/psycopg/psycopg/errors.py @@ -94,7 +94,7 @@ class FinishedPGconn: self._raise() def get_error_message(self, encoding: str = "") -> str: - return "the conenection is closed" + return "the connection is closed" def reset_start(self) -> NoReturn: self._raise() -- 2.47.2