Browse Source

oops, leftover typo

David Rose 16 years ago
parent
commit
779d246bad
1 changed files with 1 additions and 1 deletions
  1. 1 1
      direct/src/stdpy/threading.py

+ 1 - 1
direct/src/stdpy/threading.py

@@ -244,7 +244,7 @@ class Condition(pm.ConditionVarFull):
             pm.ConditionVarFull.wait(self, timeout)
 
     def notifyAll(self):
-        self.__cvar.notifyAll()
+        pm.ConditionVarFull.notifyAll(self)
 
     notify_all = notifyAll