Hi obvious, The dev_appserver will deny you access to files that are 'skipped' (that is, they will not be uploaded to App Engine), or static files. Is that the case for the CSV file you are trying to open?
If the file is skipped, you can override the check by passing --allow_skipped_files to the dev_appserver. -Nick Johnson On Mon, May 11, 2009 at 3:44 PM, obvious <[email protected]> wrote: > > I upgraded from 1.2.1 to 1.2.2 last night and now I can't read files > with csv.reader. > I do this: > reader = csv.reader(open("applications.csv",'rU')) > and I get the following error: > IOError: [Errno 13] file not accessible: 'applications.csv' > > I've tried reinstalling the python environment, the SDK to no avail. > > --~--~---------~--~----~------------~-------~--~----~ You received this message because you are subscribed to the Google Groups "Google App Engine" group. To post to this group, send email to [email protected] To unsubscribe from this group, send email to [email protected] For more options, visit this group at http://groups.google.com/group/google-appengine?hl=en -~----------~----~----~----~------~----~------~--~---
