Changeset 1825 for inundation/pyvolution/domain.py
- Timestamp:
- Sep 13, 2005, 11:21:00 AM (19 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
inundation/pyvolution/domain.py
r1824 r1825 363 363 364 364 msg = 'Keyword argument quantities must be either None, ' 365 msg += 'string or list. I got %s' %str(quantiti tes)365 msg += 'string or list. I got %s' %str(quantities) 366 366 assert type(quantities) == types.ListType, msg 367 367 368 368 369 if tag is None:369 if tags is None: 370 370 tags = self.get_boundary_tags() 371 371 elif type(tags) == types.StringType: … … 373 373 374 374 msg = 'Keyword argument tags must be either None, ' 375 msg += 'string or list. I got %s' %str( quantitites)375 msg += 'string or list. I got %s' %str(tags) 376 376 assert type(tags) == types.ListType, msg 377 377
Note: See TracChangeset
for help on using the changeset viewer.