Changeset 8125 for trunk/anuga_core/source/anuga/damage_modelling
- Timestamp:
- Mar 4, 2011, 2:34:28 PM (14 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/anuga_core/source/anuga/damage_modelling/inundation_damage.py
r7743 r8125 8 8 from Scientific.Functions.Interpolation import InterpolatingFunction 9 9 from random import choice 10 from types import StringType11 10 12 11 import numpy as num … … 68 67 name to get the output file name 69 68 """ 70 if type(exposure_files_in) == StringType:69 if isinstance(exposure_files_in, basestring): 71 70 exposure_files_in = [exposure_files_in] 72 71
Note: See TracChangeset
for help on using the changeset viewer.