diff options
author | Gaurav Jain <gaurav@gauravjain.org> | 2014-04-18 02:12:08 -0400 |
---|---|---|
committer | Gaurav Jain <gaurav@gauravjain.org> | 2014-04-18 02:12:08 -0400 |
commit | d2db40e7b7ab2bc1e23c1d8d10b708d3bc57e839 (patch) | |
tree | 5bce0fe4bd6f4e6935327b2bd69207d994067500 /pygments | |
parent | 74934e8781c6341050bf022ff9b4dfce3a420a12 (diff) | |
download | pygments-d2db40e7b7ab2bc1e23c1d8d10b708d3bc57e839.tar.gz |
Minor style fix to remove space around "=" for kwargs
Diffstat (limited to 'pygments')
-rw-r--r-- | pygments/lexers/text.py | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/pygments/lexers/text.py b/pygments/lexers/text.py index 43373790..6c2a4119 100644 --- a/pygments/lexers/text.py +++ b/pygments/lexers/text.py @@ -1683,7 +1683,7 @@ class CMakeLexer(RegexLexer): def analyse_text(text): exp = r'^ *CMAKE_MINIMUM_REQUIRED *\( *VERSION *\d(\.\d)* *( FATAL_ERROR)? *\) *$' - if re.search(exp, text, flags = re.MULTILINE | re.IGNORECASE): + if re.search(exp, text, flags=re.MULTILINE | re.IGNORECASE): return 0.8 return 0.0 |