Update of /cvsroot/webware/Webware/MiscUtils
In directory sc8-pr-cvs1:/tmp/cvs-serv9802/MiscUtils
Modified Files:
DataTable.py
Log Message:
Tabnanny revealed a number of files with mixed space and tab indentation.
I've converted them to use tabs only, as required by the Webware style
guidelines.
Index: DataTable.py
===================================================================
RCS file: /cvsroot/webware/Webware/MiscUtils/DataTable.py,v
retrieving revision 1.21
retrieving revision 1.22
diff -C2 -d -r1.21 -r1.22
*** DataTable.py 11 Nov 2002 02:17:02 -0000 1.21
--- DataTable.py 27 Jan 2003 16:06:06 -0000 1.22
***************
*** 540,544 ****
4. Any object responding to hasValueForKey() and valueForKey().
"""
! self._headings = table.headings()
self._nameToIndexMap = table.nameToIndexMap()
# @@ 2000-07-20 ce: Take out the headings arg to the init method since we have an attribute for that
--- 540,544 ----
4. Any object responding to hasValueForKey() and valueForKey().
"""
! self._headings = table.headings()
self._nameToIndexMap = table.nameToIndexMap()
# @@ 2000-07-20 ce: Take out the headings arg to the init method since we have an attribute for that
|