diff options
author | gbrandl <devnull@localhost> | 2009-09-11 15:16:16 +0200 |
---|---|---|
committer | gbrandl <devnull@localhost> | 2009-09-11 15:16:16 +0200 |
commit | 62a15a609483430c0770a3c152f069954ed83c76 (patch) | |
tree | ae4dc0ebb35c3ab020076b01e4e153c51abfd15b /pygments/lexers/agile.py | |
parent | acdc154512fa4702fd6fed526ea1e0bbc62759cd (diff) | |
download | pygments-62a15a609483430c0770a3c152f069954ed83c76.tar.gz |
Make make check happy.
Diffstat (limited to 'pygments/lexers/agile.py')
-rw-r--r-- | pygments/lexers/agile.py | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/pygments/lexers/agile.py b/pygments/lexers/agile.py index a6c21a10..1a57c737 100644 --- a/pygments/lexers/agile.py +++ b/pygments/lexers/agile.py @@ -127,7 +127,8 @@ class PythonLexer(RegexLexer): ('[a-zA-Z_][a-zA-Z0-9_]*', Name.Class, '#pop') ], 'import': [ - (r'((?:\s|\\\s)+)(as)((?:\s|\\\s)+)', bygroups(Text, Keyword.Namespace, Text)), + (r'((?:\s|\\\s)+)(as)((?:\s|\\\s)+)', + bygroups(Text, Keyword.Namespace, Text)), (r'[a-zA-Z_][a-zA-Z0-9_.]*', Name.Namespace), (r'(\s*)(,)(\s*)', bygroups(Text, Operator, Text)), (r'', Text, '#pop') # all else: go back |