mirror of https://github.com/python/cpython.git
Fixed typo in verbose output.
Closes bug #1110998. Thanks Matthew Bogosian.
This commit is contained in:
parent
13a1fde4da
commit
90cece7f89
|
@ -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)
|
||||
|
|
Loading…
Reference in New Issue