Changeset 8125 for trunk/anuga_core/source/anuga/utilities/compile.py
- Timestamp:
- Mar 4, 2011, 2:34:28 PM (14 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/anuga_core/source/anuga/utilities/compile.py
r8124 r8125 20 20 # it has only really been used with gcc. 21 21 22 import os, string, sys , types22 import os, string, sys 23 23 24 24 separation_line = '---------------------------------------' … … 40 40 assert not FNs is None, 'No filename provided' 41 41 42 if not type(FNs) == types.ListType:42 if not isinstance(FNs, list): 43 43 FNs = [FNs] 44 44
Note: See TracChangeset
for help on using the changeset viewer.