From fcbedd9d70198d44fb5897e45487604afa6c1518 Mon Sep 17 00:00:00 2001 From: Wieland Hoffmann Date: Sun, 6 Feb 2011 03:15:29 +0100 Subject: Fix a typo in the tutorial --- apidoc/tutorial.rst | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/apidoc/tutorial.rst b/apidoc/tutorial.rst index f221aa7..819abff 100755 --- a/apidoc/tutorial.rst +++ b/apidoc/tutorial.rst @@ -422,7 +422,7 @@ Here is an example for a simple file upload form: if name and data: raw = data.file.read() # This is dangerous for big files filename = data.filename - return "Hello %s! Your uploaded %s (%d bytes)." % (name, filename, len(raw)) + return "Hello %s! You uploaded %s (%d bytes)." % (name, filename, len(raw)) return "You missed a field." -- cgit v1.2.1