Django

Code

Changeset 2553

Show
Ignore:
Timestamp:
03/23/06 20:28:47 (3 years ago)
Author:
adrian
Message:

Fixed typo in docs/outputting_pdf.txt. Thanks, Paul

Files:

Legend:

Unmodified
Added
Removed
Modified
Copied
Moved
  • django/trunk/docs/outputting_pdf.txt

    r2334 r2553  
    118118        response['Content-Disposition'] = 'attachment; filename=somefilename.pdf' 
    119119 
    120         buffer = String() 
     120        buffer = StringIO() 
    121121 
    122122        # Create the PDF object, using the StringIO object as its "file."