Error parsing yaml file: mapping values are not allowed here

后端 未结 7 1792
清歌不尽
清歌不尽 2021-01-30 15:53

I want to upload an app to Google App Engine:

I get this

Error parsing yaml file:
mapping values are not allowed here
  in \"/home/antonio/Desktop/ATI/cl         


        
7条回答
  •  無奈伤痛
    2021-01-30 16:08

    Change

    application:climate-change
    

    to

    application: climate-change
    

    The space after the colon is mandatory in yaml if you want a key-value pair. (See http://www.yaml.org/spec/1.2/spec.html#id2759963)

提交回复
热议问题