Ignore:
Timestamp:
Mar 4, 2011, 2:34:28 PM (13 years ago)
Author:
wilsonr
Message:

Changes to address ticket 360.

File:
1 edited

Legend:

Unmodified
Added
Removed
  • trunk/anuga_core/source/anuga/shallow_water/shallow_water_domain.py

    r8124 r8125  
    8787import anuga.utilities.log as log
    8888
    89 import types
    9089
    9190class Domain(Generic_Domain):
     
    390389            assert quantity_name in self.quantities, msg
    391390
    392         assert type(q) == types.DictType   
     391        assert isinstance(q, dict)
    393392        self.quantities_to_be_stored = q
    394393
Note: See TracChangeset for help on using the changeset viewer.