Web   ·   Wiki   ·   Activities   ·   Blog   ·   Lists   ·   Chat   ·   Meeting   ·   Bugs   ·   Git   ·   Translate   ·   Archive   ·   People   ·   Donate
summaryrefslogtreecommitdiffstats
path: root/sugar/network.py
diff options
context:
space:
mode:
Diffstat (limited to 'sugar/network.py')
-rw-r--r--sugar/network.py4
1 files changed, 4 insertions, 0 deletions
diff --git a/sugar/network.py b/sugar/network.py
index 77de95e..49d4882 100644
--- a/sugar/network.py
+++ b/sugar/network.py
@@ -144,6 +144,10 @@ class ChunkedGlibHTTPRequestHandler(SimpleHTTPServer.SimpleHTTPRequestHandler):
** [dcbw] modified to send Content-disposition filename too
"""
path = self.translate_path(self.path)
+ if not path or not os.path.exists(path):
+ self.send_error(404, "File not found")
+ return None
+
f = None
if os.path.isdir(path):
for index in "index.html", "index.htm":