diff options
author | gbrandl <devnull@localhost> | 2006-12-16 09:12:00 +0100 |
---|---|---|
committer | gbrandl <devnull@localhost> | 2006-12-16 09:12:00 +0100 |
commit | 0ef0ea74d32fd433fd4c19225f73116c80dfb56e (patch) | |
tree | f29540f08a174fbd5676b9f11181177b29b53734 /pygments/lexers | |
parent | 4acde39a9b1c9b11a02bea90923b5f6678eb6c26 (diff) | |
download | pygments-0ef0ea74d32fd433fd4c19225f73116c80dfb56e.tar.gz |
[svn] Add a few example files.
Diffstat (limited to 'pygments/lexers')
-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') - |