mistake corrected

This commit is contained in:
Roel 2014-05-28 23:14:04 +02:00
parent c52e672aff
commit ac745fde93

View File

@ -24,7 +24,7 @@ class ClientServeHandler(SimpleHTTPServer.SimpleHTTPRequestHandler):
self.send_header('Content-type', 'text/html')
self.end_headers()
f = os.path.join('/home/root/meshenger/',"webapp.html")
f = os.path.join('/root/meshenger/',"webapp.html")
with open( f, 'r') as the_file:
self.wfile.write(the_file.read())