The errors you reported are pretty specific. It's a problem with you app.yaml
I would look at the line immediately preceeding line 10. On Friday, August 30, 2013 8:51:16 AM UTC+8, Kim Jae wrote: > > Hello! thank you for your response. I don't think spacing is the problem > because I was able to successfully deploy the previous yaml file. I just > added a few words and changed some. attached is the original notepad for > your reference. > > > On Fri, Aug 30, 2013 at 12:12 AM, Vinny P <[email protected] <javascript:> > > wrote: > >> Are you indenting your YAML lines correctly? Based on the file you >> pasted, I don't see any indentation. >> >> YAML is similar to Python in that it requires developers to indent >> lists/properties. Use spaces when indenting, not tabs. See >> http://yaml.org/spec/1.2/2009-07-21/spec.html#id2576668 >> >> >> ----------------- >> -Vinny P >> Technology & Media Advisor >> Chicago, IL >> >> App Engine Code Samples: http://www.learntogoogleit.com >> >> >> >> >> On Thu, Aug 29, 2013 at 9:35 AM, Kim Jae <[email protected]<javascript:> >> > wrote: >> >>> I tried to deploy the my app and I got an error message: >>> >>> in “C:\Users\xplore\Documents\**shitty shit\cs\app.yaml”, line 10, >>> column 1 >>> >>> could not found expected ‘:’ >>> in “C:\Users\xplore\Documents\**shitty shit\cs\app.yaml”, line 11, >>> column 1 >>> 2013-08-29 21:29:44 (Process exited with code 1) >>> >>> I tried to check my .yaml file and this is what it says: >>> >>> runtime: python27 >>> >>> api_version: 1 >>> threadsafe:true >>> handlers: >>> - url: /images >>> static_dir: images >>> - url: / >>> script: main.app >>> login: admin >>> - url: /getvalue >>> script: main.app >>> login: optional >>> - url: /setvalue >>> script: main.app >>> login: optional >>> - url: /sendemail >>> script: main.app >>> login: optional >>> builtins: >>> - datastore_admin: on >>> >>> >>> I have no idea what went wrong with the code. I'm kinda new to Python so >>> it's impossible for me to figure out what I need to change in lines 10 and >>> 11 based on the yaml file. >>> >> >> >> >> >> -- >> You received this message because you are subscribed to a topic in the >> Google Groups "Google App Engine" group. >> To unsubscribe from this topic, visit >> https://groups.google.com/d/topic/google-appengine/MAwh5SBAuyU/unsubscribe >> . >> To unsubscribe from this group and all its topics, send an email to >> [email protected] <javascript:>. >> To post to this group, send email to >> [email protected]<javascript:> >> . >> Visit this group at http://groups.google.com/group/google-appengine. >> For more options, visit https://groups.google.com/groups/opt_out. >> > > -- You received this message because you are subscribed to the Google Groups "Google App Engine" group. To unsubscribe from this group and stop receiving emails from it, send an email to [email protected]. To post to this group, send email to [email protected]. Visit this group at http://groups.google.com/group/google-appengine. For more options, visit https://groups.google.com/groups/opt_out.
