Closed echo99 closed 11 years ago
The filename regex in coffee_utils.py doesn't seem to working for finding the CoffeeScript files in my project. I had to change it to the following to get it to work:
coffee_utils.py
COFFEE_FILENAME_REGEX = r"(?:\.coffee|\.litcoffee|\.coffee\.md)$"
Removing the re.escape around COFFEE_EXTENSION_WITH_DOT also worked.
re.escape
COFFEE_EXTENSION_WITH_DOT
COFFEE_FILENAME_REGEX = r".+?" + COFFEE_EXTENSION_WITH_DOT
The filename regex in
coffee_utils.py
doesn't seem to working for finding the CoffeeScript files in my project. I had to change it to the following to get it to work:Removing the
re.escape
aroundCOFFEE_EXTENSION_WITH_DOT
also worked.