I would think that would work, but I cook everything in myself; you
might just try using a relative directory access instead of absolute,
I have heard that works best in GAE.
Is the .html file mapped in app.yaml as static file? If it is, it
can't be read directly. If not, try using abspath:
ROOT_DIR = os.path.abspath(os.path.dirname(__file__))
-- rodrigo
You didn't find your file. You're trying to read /pages at the root
of the filesystem, and you don't have permission to read anything
above your application directory. The error isn't telling you that
you don't have permission to read it, it's that you don't even have
permission to check for its existence.