Changeset 1140
- Timestamp:
- 07/27/07 21:53:47 (6 years ago)
- Files:
-
- 1 modified
-
trunk/umitCore/I18N.py (modified) (1 diff)
Legend:
- Unmodified
- Added
- Removed
-
trunk/umitCore/I18N.py
r1138 r1140 56 56 """ 57 57 log.debug(">>> Converting '%s' from '%s' to unicode" % (string, ENC)) 58 import pdb; pdb.set_trace() 59 string = string.decode("utf8", ERRORS) 60 string = string.encode("utf8", ERRORS) 58 string = string.decode(ENC, ERRORS) 61 59 log.debug(">>> Converted to: '%s'" % string) 62 60
