~hudson-openstack/swift/trunk

« back to all changes in this revision

Viewing changes to swift/container/server.py

  • Committer: Tarmac
  • Author(s): gholt
  • Date: 2011-06-13 21:01:07 UTC
  • mfrom: (306.1.4 utfdash8)
  • Revision ID: tarmac-20110613210107-mnvngsf9cfu2px1x
Fixed account and container listings so they return with charset=utf-8 instead of utf8.

Show diffs side-by-side

added added

removed removed

Lines of Context:
334
334
            container_list = '\n'.join(r[0] for r in container_list) + '\n'
335
335
        ret = Response(body=container_list, request=req, headers=resp_headers)
336
336
        ret.content_type = out_content_type
337
 
        ret.charset = 'utf8'
 
337
        ret.charset = 'utf-8'
338
338
        return ret
339
339
 
340
340
    def REPLICATE(self, req):