unnecessary semicolon

This commit is contained in:
Jeremy Hylton 2001-01-26 17:08:32 +00:00
parent a813153e15
commit 5b48c45736
1 changed files with 1 additions and 1 deletions

View File

@ -97,7 +97,7 @@ class SimpleHTTPRequestHandler(BaseHTTPServer.BaseHTTPRequestHandler):
try:
list = os.listdir(path)
except os.error:
self.send_error(404, "No permission to list directory");
self.send_error(404, "No permission to list directory")
return None
list.sort(lambda a, b: cmp(a.lower(), b.lower()))
f = StringIO()