fixed a bug in Row, recently introduced

This commit is contained in:
mdipierro
2012-08-21 18:20:07 -05:00
parent 3283ce144c
commit 1fedbd105e
2 changed files with 3 additions and 2 deletions

View File

@@ -1 +1 @@
Version 2.00.0 (2012-08-21 17:41:57) dev
Version 2.00.0 (2012-08-21 18:20:02) dev

View File

@@ -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):