Skip to content

Commit 1316006

Browse files
committed
fix
1 parent 267c9f2 commit 1316006

1 file changed

Lines changed: 2 additions & 3 deletions

File tree

httpserver.py

Lines changed: 2 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -2,10 +2,9 @@
22
#coding=utf-8
33

44
'''
5-
For:
65
by Lerry http://lerry.org
76
Start from 2011/07/27 22:49:51
8-
Last edit at 2011/07/27
7+
Last edit at 2012/09/29
98
'''
109
import os
1110
import posixpath
@@ -231,7 +230,7 @@ class ThreadingServer(ThreadingMixIn, HTTPServer):
231230
def run(port=8080, doc_root=os.getcwd()):
232231
serveraddr = ('', port)
233232
serv = ThreadingServer(serveraddr, get_handler(doc_root))
234-
print 'Server Started at port:',port
233+
print 'Server Started at port:', port
235234
serv.serve_forever()
236235

237236
def test():

0 commit comments

Comments
 (0)