fixed a bug in Row, recently introduced
This commit is contained in:
2
VERSION
2
VERSION
@@ -1 +1 @@
|
||||
Version 2.00.0 (2012-08-21 17:41:57) dev
|
||||
Version 2.00.0 (2012-08-21 18:20:02) dev
|
||||
|
||||
@@ -6281,7 +6281,8 @@ class Row(dict):
|
||||
this is only used to store a Row
|
||||
"""
|
||||
|
||||
def __init__(self):
|
||||
def __init__(self,*args,**kwargs):
|
||||
dict.__init__(self,*args,**kwargs)
|
||||
self.__dict__ = self
|
||||
|
||||
def __getitem__(self, key):
|
||||
|
||||
Reference in New Issue
Block a user