From 90cece7f8930cbfe5b87a61a1a67cfd670639c63 Mon Sep 17 00:00:00 2001 From: Brett Cannon Date: Thu, 27 Jan 2005 22:48:30 +0000 Subject: [PATCH] Fixed typo in verbose output. Closes bug #1110998. Thanks Matthew Bogosian. --- Lib/threading.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Lib/threading.py b/Lib/threading.py index 1aed551c5f..cbcc1f91b2 100644 --- a/Lib/threading.py +++ b/Lib/threading.py @@ -102,7 +102,7 @@ class _RLock(_Verbose): self.__owner = me self.__count = 1 if __debug__: - self._note("%s.acquire(%s): initial succes", self, blocking) + self._note("%s.acquire(%s): initial success", self, blocking) else: if __debug__: self._note("%s.acquire(%s): failure", self, blocking) -- 2.49.0