ModSecurity errors on Comodo Ruleset

Last update to ModSecurity is causing errors in Apache with Comodo rules:

AH00526: Syntax error on line 6035 of /etc/apache2/conf.d/modsec_vendor_configs/comodo_apache/30_Apps_OtherApps.conf:
Error creating rule: Error compiling pattern (offset 4): invalid range in character class

For anyone who comes across this, a temporary fix is to run:

sed -i '6034s/\[\(\\d\)-:\]/[\1:-]/' /etc/apache2/conf.d/modsec_vendor_configs/comodo_apache/30_Apps_OtherApps.conf

This safely rewrites [\d-:] to [\d:-] on line 6034.