diff options
author | Jeremy Hylton <jeremy@alum.mit.edu> | 2001-01-26 17:08:32 (GMT) |
---|---|---|
committer | Jeremy Hylton <jeremy@alum.mit.edu> | 2001-01-26 17:08:32 (GMT) |
commit | 5b48c457365d386a511607b52717161a48250d46 (patch) | |
tree | 2280816ab71e4bccaefc00d6665c781b4070a196 /Lib/SimpleHTTPServer.py | |
parent | a813153e1528af8967e5a1baa17c0803064832a7 (diff) | |
download | cpython-5b48c457365d386a511607b52717161a48250d46.zip cpython-5b48c457365d386a511607b52717161a48250d46.tar.gz cpython-5b48c457365d386a511607b52717161a48250d46.tar.bz2 |
unnecessary semicolon
Diffstat (limited to 'Lib/SimpleHTTPServer.py')
-rw-r--r-- | Lib/SimpleHTTPServer.py | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/Lib/SimpleHTTPServer.py b/Lib/SimpleHTTPServer.py index 7bb1262..9c87e66 100644 --- a/Lib/SimpleHTTPServer.py +++ b/Lib/SimpleHTTPServer.py @@ -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() |