From: Brett Cannon Date: Thu, 27 Jan 2005 22:48:30 +0000 (+0000) Subject: Fixed typo in verbose output. X-Git-Tag: v2.5a0~2074 X-Git-Url: http://git.ipfire.org/gitweb.cgi?a=commitdiff_plain;h=90cece7f8930cbfe5b87a61a1a67cfd670639c63;p=thirdparty%2FPython%2Fcpython.git Fixed typo in verbose output. Closes bug #1110998. Thanks Matthew Bogosian. --- diff --git a/Lib/threading.py b/Lib/threading.py index 1aed551c5ff3..cbcc1f91b280 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)