commit | 90cece7f8930cbfe5b87a61a1a67cfd670639c63 | [log] [tgz] |
---|---|---|
author | Brett Cannon <bcannon@gmail.com> | Thu Jan 27 22:48:30 2005 +0000 |
committer | Brett Cannon <bcannon@gmail.com> | Thu Jan 27 22:48:30 2005 +0000 |
tree | 55fc0a43084ee4935862d495c90d76e549158152 | |
parent | 13a1fde4da63c92fdb86b6bcf4d2d21928c80bc8 [diff] |
Fixed typo in verbose output. Closes bug #1110998. Thanks Matthew Bogosian.
diff --git a/Lib/threading.py b/Lib/threading.py index 1aed551..cbcc1f9 100644 --- a/Lib/threading.py +++ b/Lib/threading.py
@@ -102,7 +102,7 @@ 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)