CC-2633: removing to_unicode()

- removed to_unicode() function calls where it's not neccessary.
This commit is contained in:
James 2011-08-08 10:41:11 -04:00
parent 8995e828ff
commit 3a2d736b1c
3 changed files with 0 additions and 7 deletions

View file

@ -231,7 +231,6 @@ class AirtimeMetadata:
if (isinstance(md[key], basestring)):
#self.logger.info("Converting md[%s] = '%s' ", key, md[key])
md[key] = api_client.to_unicode(md[key])
md[key] = api_client.encode_to(md[key], 'utf-8')
#self.logger.info("Converting complete: md[%s] = '%s' ", key, md[key])