Skip to content

Commit

Permalink
fixing encoding bugs
Browse files Browse the repository at this point in the history
  • Loading branch information
leewardbound committed Feb 1, 2013
1 parent da2be2e commit ec4de44
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion hailwhale/whale.py
Expand Up @@ -537,7 +537,7 @@ def get_subdimensions(cls, pk, dimension='_'):
for s in set_members:
loaded = try_loads(s)
if isinstance(loaded, list) and len(loaded):
loaded = map(str, loaded)
loaded = map(unicode, loaded)
subdimensions.append(loaded)
return subdimensions

Expand Down

0 comments on commit ec4de44

Please sign in to comment.