Skip to content

Commit 526b8e3

Browse files
committed
Update docstring
1 parent 9c0cfb0 commit 526b8e3

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

webware/Examples/FileUpload.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -7,7 +7,7 @@ class FileUpload(ExamplePage):
77
The process is fairly self-explanatory. You use a form like the one below
88
in the writeContent method. When the form is uploaded, the request field
99
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
10+
of the FieldStorage class from the WebUtils.FieldStorage module. The key
1111
attributes of this class are shown in the example below. The most important
1212
things are filename, which gives the name of the file that was uploaded,
1313
and file, which is an open file handle to the uploaded file. The uploaded

0 commit comments

Comments
 (0)