Tell me more ×
Facebook - Stack Overflow is a question and answer site for facebook developers. It's 100% free, no registration required.
Facebook and Stack Exchange are now working together to support the Facebook developer community. Facebook engineers participate here along with the best Facebook developers in the world. If you have a technical question about Facebook, this is the best place to ask.

I really hate asking this because it should be obvious but I can't get it to work. SO I'm trying to create this simple yaml file:

Day:
   MOND:'1s'
   TUD:'2s'
   WED:'3s'
   THD:'4s'
   FRD:'5s'

But I'm getting this error: yaml.scanner.ScannerError: while scanning for the next token found character '\t' that cannot start any token

share|improve this question

1 Answer

It could be that you're using a tab to indent the next line, when you should be using spaces.

share|improve this answer
1  
I tried using space, and I'm getting the same error!!! – Mike Oct 12 '12 at 22:49
Never mind! I figured it out. It was using a mixture of space and tabs. Whew! – Mike Oct 12 '12 at 23:07

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

Not the answer you're looking for? Browse other questions tagged or ask your own question.