/loggerhead/trunk

To get this branch, use:
bzr branch http://gegoxaren.bato24.eu/bzr/loggerhead/trunk

« back to all changes in this revision

Viewing changes to loggerhead/controllers/diff_ui.py

  • Committer: Matt Nordhoff
  • Date: 2009-10-17 06:55:25 UTC
  • mfrom: (389.2.2 pep8-2009-10)
  • mto: This revision was merged to the branch mainline in revision 406.
  • Revision ID: mnordhoff@mattnordhoff.com-20091017065525-ap2nj2bb0mx3ifq2
Merge my new pep8-2009-10 branch

Show diffs side-by-side

added added

removed removed

Lines of Context:
73
73
        headers = [
74
74
            ('Content-Type', 'application/octet-stream'),
75
75
            ('Content-Length', len(content)),
76
 
            ('Content-Disposition', 'attachment; filename=%s' % filename),
 
76
            ('Content-Disposition', 'attachment; filename=%s' % (filename,)),
77
77
            ]
78
78
        start_response('200 OK', headers)
79
79
        return [content]