[Python-checkins] CVS: python/dist/src/Lib SimpleHTTPServer.py,1.14,1.15

Jeremy Hylton jhylton@users.sourceforge.net
Fri, 26 Jan 2001 09:08:35 -0800


Update of /cvsroot/python/python/dist/src/Lib
In directory usw-pr-cvs1:/tmp/cvs-serv6481

Modified Files:
	SimpleHTTPServer.py 
Log Message:
unnecessary semicolon


Index: SimpleHTTPServer.py
===================================================================
RCS file: /cvsroot/python/python/dist/src/Lib/SimpleHTTPServer.py,v
retrieving revision 1.14
retrieving revision 1.15
diff -C2 -r1.14 -r1.15
*** SimpleHTTPServer.py	2001/01/20 19:54:20	1.14
--- SimpleHTTPServer.py	2001/01/26 17:08:32	1.15
***************
*** 98,102 ****
              list = os.listdir(path)
          except os.error:
!             self.send_error(404, "No permission to list directory");
              return None
          list.sort(lambda a, b: cmp(a.lower(), b.lower()))
--- 98,102 ----
              list = os.listdir(path)
          except os.error:
!             self.send_error(404, "No permission to list directory")
              return None
          list.sort(lambda a, b: cmp(a.lower(), b.lower()))