diff options
Diffstat (limited to 'pygments/lexers/other.py')
-rw-r--r-- | pygments/lexers/other.py | 3 |
1 files changed, 1 insertions, 2 deletions
diff --git a/pygments/lexers/other.py b/pygments/lexers/other.py index 0c54327c..94d3c3b6 100644 --- a/pygments/lexers/other.py +++ b/pygments/lexers/other.py @@ -5,7 +5,7 @@ Lexers for other languages: SQL, BrainFuck. - :copyright: 2006 by Georg Brandl, Tim Hatch <tim@timhatch.com>. + :copyright: 2006 by Georg Brandl, Tim Hatch <tim@timhatch.com>. :license: BSD, see LICENSE for more details. """ @@ -202,4 +202,3 @@ class BashLexer(RegexLexer): def analyse_text(text): return shebang_matches(text, r'(ba|z|)sh') - |