summaryrefslogtreecommitdiff
path: root/pygments
diff options
context:
space:
mode:
authorGaurav Jain <gaurav@gauravjain.org>2014-04-18 02:12:08 -0400
committerGaurav Jain <gaurav@gauravjain.org>2014-04-18 02:12:08 -0400
commitd2db40e7b7ab2bc1e23c1d8d10b708d3bc57e839 (patch)
tree5bce0fe4bd6f4e6935327b2bd69207d994067500 /pygments
parent74934e8781c6341050bf022ff9b4dfce3a420a12 (diff)
downloadpygments-d2db40e7b7ab2bc1e23c1d8d10b708d3bc57e839.tar.gz
Minor style fix to remove space around "=" for kwargs
Diffstat (limited to 'pygments')
-rw-r--r--pygments/lexers/text.py2
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