From 8ac01ad7c03cdc4000cb5f1987b608d1ba8d3247 Mon Sep 17 00:00:00 2001 From: John Little Date: Sun, 10 Jan 2016 16:00:59 +0000 Subject: [PATCH] changed the path to lowercase --- server.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/server.py b/server.py index a8aee1fb..84762030 100644 --- a/server.py +++ b/server.py @@ -4,7 +4,7 @@ import sys, os import SimpleHTTPServer, SocketServer #Replace this with a different path if you need to... -base_path = os.path.join(os.getcwd(),"ESP8266","data") +base_path = os.path.join(os.getcwd(),"esp8266","data") class MyHandler(SimpleHTTPServer.SimpleHTTPRequestHandler): def do_GET(self):