summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorGeorg Brandl <georg@python.org>2012-02-05 10:21:23 +0100
committerGeorg Brandl <georg@python.org>2012-02-05 10:21:23 +0100
commit3ba1d188e015b5db28497183b5123362209dba4c (patch)
tree8363b33afc039d581b657c4744a1d4530e29ae2d
parent8cdcc1ed72f03f21cc2185ff863d76d8cda27171 (diff)
downloadpygments-3ba1d188e015b5db28497183b5123362209dba4c.tar.gz
Style fixes.
-rw-r--r--pygments/lexers/text.py3
1 files changed, 2 insertions, 1 deletions
diff --git a/pygments/lexers/text.py b/pygments/lexers/text.py
index a351687a..94e5de6c 100644
--- a/pygments/lexers/text.py
+++ b/pygments/lexers/text.py
@@ -1033,7 +1033,8 @@ class DebianControlLexer(RegexLexer):
(r'.', Text),
],
'description': [
- (r'(.*)(Homepage)(: )([^\s]+)', bygroups(Text, String, Name, Name.Class)),
+ (r'(.*)(Homepage)(: )([^\s]+)',
+ bygroups(Text, String, Name, Name.Class)),
(r':.*\n', Generic.Strong),
(r' .*\n', Text),
('', Text, '#pop'),