git » pymisc » commit 23eb152

Fix small name typo in dataflow.py

author Alberto Bertogli
2006-06-18 18:27:38 UTC
committer Alberto Bertogli
2006-06-18 18:27:38 UTC
parent 0d10b3c9f4e923257f9cd455058c19299eb18e86

Fix small name typo in dataflow.py

dataflow.py +1 -1

diff --git a/dataflow.py b/dataflow.py
index eeffabf..6ab8f80 100644
--- a/dataflow.py
+++ b/dataflow.py
@@ -10,7 +10,7 @@ class DFObject(object):
 	"Object with dataflow semantics"
 	def __init__(self):
 		self.__isset = False
-		self.__val = None
+		self.__value = None
 		self.__lock = threading.Condition()
 
 	def getval(self):