Changeset 8125 for trunk/anuga_core/source/anuga/file/csv_file.py
- Timestamp:
- Mar 4, 2011, 2:34:28 PM (14 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/anuga_core/source/anuga/file/csv_file.py
r7858 r8125 158 158 """ 159 159 160 import types161 162 160 # Check that kwargs is a dictionary 163 if type(kwargs) != types.DictType:161 if not isinstance(kwargs, dict): 164 162 raise TypeError 165 163
Note: See TracChangeset
for help on using the changeset viewer.