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 1aed551c5ff..cbcc1f91b28 100644 --- a/Lib/threading.py +++ b/Lib/threading.py @@ -102,7 +102,7 @@ def acquire(self, blocking=1): 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)