diff --git a/neomi.py b/neomi.py index 59f1042..6e0d7d2 100644 --- a/neomi.py +++ b/neomi.py @@ -694,7 +694,7 @@ class Serve(threading.Thread): except FileNotFoundError: log('%s [%s]: Requested path not found: %s' % (self.address, protocol.name, path_raw)) - reader = StringReader('%s not found\n' % path_raw) + reader = StringReader('%s not found\n\nMake sure you included the item type in the URL\n' % path_raw) send_header(self.sock, protocol, Status.notfound, 'text/plain', config = self.config) if not just_headers: send_file(self.sock, reader, protocol, 'text/plain', config = self.config)