Update of /cvsroot/modeling/ProjectModeling/Modeling
In directory sc8-pr-cvs1:/tmp/cvs-serv9646
Modified Files:
Attribute.py
Log Message:
Fixed readFormat() (was calling a inexistant method!)
Index: Attribute.py
===================================================================
RCS file: /cvsroot/modeling/ProjectModeling/Modeling/Attribute.py,v
retrieving revision 1.15
retrieving revision 1.16
diff -C2 -d -r1.15 -r1.16
*** Attribute.py 7 Jul 2003 14:57:13 -0000 1.15
--- Attribute.py 23 Jul 2003 11:22:23 -0000 1.16
***************
*** 275,281 ****
def readFormat(self):
"""
! Simply returns the attribute's externalName()
"""
! return self.externalName()
def relationshipPath(self):
--- 275,281 ----
def readFormat(self):
"""
! Simply returns the attribute's columnName()
"""
! return self.columnName()
def relationshipPath(self):
|