Improve PEP8 gluon/myregex.py

This commit is contained in:
Hardirc
2015-03-06 22:12:56 -05:00
parent 29c0eb6bac
commit 0546e9b396

View File

@@ -24,7 +24,7 @@ regex_expose = re.compile(
'^def\s+(?P<name>_?[a-zA-Z0-9]\w*)\( *\)\s*:',
flags=re.M)
regex_longcomments = re.compile('(""".*?"""|'+"'''.*?''')",re.DOTALL)
regex_longcomments = re.compile('(""".*?"""|'+"'''.*?''')", re.DOTALL)
regex_include = re.compile(
'(?P<all>\{\{\s*include\s+[\'"](?P<name>[^\'"]*)[\'"]\s*\}\})')