Skip to content

Commit

Permalink
Fix encoding issue.
Browse files Browse the repository at this point in the history
  • Loading branch information
gblache committed Oct 11, 2011
1 parent fff69f0 commit fbd8104
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion ajax/encoders.py
Expand Up @@ -140,7 +140,7 @@ def encode(self, record, encoder=None):
if isinstance(record, collections.Iterable):
ret = []
for i in record:
ret.append(self.encode(i))
ret.append(self.encode(i, encoder))
else:
ret = encoder(record)

Expand Down

0 comments on commit fbd8104

Please sign in to comment.