Changeset 4638
- Timestamp:
- 04/30/09 01:41:05 (4 years ago)
- Files:
-
- 1 modified
-
branch/UMPA/umpa/protocols/_fields.py (modified) (2 diffs)
Legend:
- Unmodified
- Added
- Removed
-
branch/UMPA/umpa/protocols/_fields.py
r4602 r4638 30 30 """ 31 31 32 import types 33 32 34 from umpa.utils.exceptions import UMPAException, UMPAAttributeException 33 35 … … 415 417 416 418 # convert the value to the list if it's str 417 if type(self._value) is str:419 if isinstance(self._value, types.StringType): 418 420 pieces = self._value.split(self.separator) 419 421 else:
