[Patch #827559 from Chris Gonnerman] Make SimpleHTTPServer redirect when a directory URL is missing the trailing slash; this lets relative links work.
diff --git a/Misc/NEWS b/Misc/NEWS
index dca49c1..897346b 100644
--- a/Misc/NEWS
+++ b/Misc/NEWS
@@ -125,6 +125,10 @@
- Bug #737202: Make CGIHTTPServer work for scripts in subdirectories.
Fix by Titus Brown.
+- Patch #827559: Make SimpleHTTPServer redirect when a directory URL
+ is missing the trailing slash, so that relative links work correctly.
+ Patch by Chris Gonnerman.
+
- Patch #1608267: fix a race condition in os.makedirs() is the directory
to be created is already there.