Fix typo in format for strftime() used by cookie code.
diff --git a/Tools/faqwiz/faqwiz.py b/Tools/faqwiz/faqwiz.py
index 6912cec..29712eb 100644
--- a/Tools/faqwiz/faqwiz.py
+++ b/Tools/faqwiz/faqwiz.py
@@ -151,7 +151,7 @@
     then = now + COOKIE_LIFETIME
     gmt = time.gmtime(then)
     print "Set-Cookie: %s=%s; path=/cgi-bin/;" % (name, value),
-    print time.strftime("expires=%a, %d-%b-%x %X GMT", gmt)
+    print time.strftime("expires=%a, %d-%b-%y %X GMT", gmt)
 
 class MagicDict: