When making a list of things, like so:
dark_zone : zone
locations = [ a, b, c, d..... ]
The parser moans about an unexpected "\n" if you break the list up to make the list look neater. Any chance you can tell the parser to treat \n as whitespace when parsing lists?
locations = [a,
b,
c]
type of thing :)
:)