diff options
author | Georg Brandl <georg@python.org> | 2012-02-05 10:21:23 +0100 |
---|---|---|
committer | Georg Brandl <georg@python.org> | 2012-02-05 10:21:23 +0100 |
commit | 3ba1d188e015b5db28497183b5123362209dba4c (patch) | |
tree | 8363b33afc039d581b657c4744a1d4530e29ae2d /pygments/lexers/text.py | |
parent | 8cdcc1ed72f03f21cc2185ff863d76d8cda27171 (diff) | |
download | pygments-3ba1d188e015b5db28497183b5123362209dba4c.tar.gz |
Style fixes.
Diffstat (limited to 'pygments/lexers/text.py')
-rw-r--r-- | pygments/lexers/text.py | 3 |
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'), |