From 22f1b0990faa2033850d44bfba29dcb3777a32ad Mon Sep 17 00:00:00 2001 From: Brett Cannon Date: Thu, 27 Jan 2005 22:49:39 +0000 Subject: Fixed typo in verbose output for RLock acquire. Fixes bug #1110998. --- Lib/threading.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Lib/threading.py b/Lib/threading.py index 860c2fd..6def594 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) -- cgit v0.12