From: Brett Cannon Date: Thu, 27 Jan 2005 22:49:39 +0000 (+0000) Subject: Fixed typo in verbose output for RLock acquire. X-Git-Tag: v2.4.1c1~63 X-Git-Url: http://git.ipfire.org/gitweb.cgi?a=commitdiff_plain;h=22f1b0990faa2033850d44bfba29dcb3777a32ad;p=thirdparty%2FPython%2Fcpython.git Fixed typo in verbose output for RLock acquire. Fixes bug #1110998. --- diff --git a/Lib/threading.py b/Lib/threading.py index 860c2fdd33c4..6def594326cc 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)