in reply to Re^2: YAML: regex stringification has changed (bless/overload not YAML::XS)
in thread YAML: regex stringification has changed

Thanks for checking that avenue. I was pretty sure YAML::XS was going to be a problem. I think it's going to be easiest for me to start saving regexes as strings instead of perl objects. I will also have to delete any regexes I accidentally load from old data, because if I read/write them a few times, they eventually become unparsable. The bug hit when
match: !!perl/regexp (?i-xsm:OK\ Server\ Connection\ 1\.001)
became something like
match: !!perl/regexp (?-u(?-u(?-u(?i-xsm:OK\ Server\ Connection\ 1 +\.001))))


- Boldra