Reputation: 125
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
Upvotes: 5
Views: 7968
Reputation: 91
It could be that you're using a tab to indent the next line, when you should be using spaces.
Upvotes: 9