We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 9c0cfb0 commit 526b8e3Copy full SHA for 526b8e3
webware/Examples/FileUpload.py
@@ -7,7 +7,7 @@ class FileUpload(ExamplePage):
7
The process is fairly self-explanatory. You use a form like the one below
8
in the writeContent method. When the form is uploaded, the request field
9
with the name you gave to the file selector form item will be an instance
10
- of the FieldStorage class from the standard Python module "cgi". The key
+ of the FieldStorage class from the WebUtils.FieldStorage module. The key
11
attributes of this class are shown in the example below. The most important
12
things are filename, which gives the name of the file that was uploaded,
13
and file, which is an open file handle to the uploaded file. The uploaded
0 commit comments