Thanks to visit codestin.com
Credit goes to github.com

Skip to content

Commit 5b48c45

Browse files
committed
unnecessary semicolon
1 parent a813153 commit 5b48c45

1 file changed

Lines changed: 1 addition & 1 deletion

File tree

Lib/SimpleHTTPServer.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -97,7 +97,7 @@ def list_directory(self, path):
9797
try:
9898
list = os.listdir(path)
9999
except os.error:
100-
self.send_error(404, "No permission to list directory");
100+
self.send_error(404, "No permission to list directory")
101101
return None
102102
list.sort(lambda a, b: cmp(a.lower(), b.lower()))
103103
f = StringIO()

0 commit comments

Comments
 (0)