diff options
| author | Georg Brandl <georg@python.org> | 2014-01-09 20:24:06 +0100 |
|---|---|---|
| committer | Georg Brandl <georg@python.org> | 2014-01-09 20:24:06 +0100 |
| commit | d2f5bd0e335d7ab8d6bee65cab8869a83624e2e3 (patch) | |
| tree | e3313505695fa1688c74be7d5cdbef1fa3b7ae83 /pygments/lexers/_robotframeworklexer.py | |
| parent | 57f143d68c9c40a11368753b57fab6e4c5921d5c (diff) | |
| download | pygments-d2f5bd0e335d7ab8d6bee65cab8869a83624e2e3.tar.gz | |
tests: make sure lexer aliases are registered lowercase
Diffstat (limited to 'pygments/lexers/_robotframeworklexer.py')
| -rw-r--r-- | pygments/lexers/_robotframeworklexer.py | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/pygments/lexers/_robotframeworklexer.py b/pygments/lexers/_robotframeworklexer.py index bc64e12b..d88aa7d1 100644 --- a/pygments/lexers/_robotframeworklexer.py +++ b/pygments/lexers/_robotframeworklexer.py @@ -60,7 +60,7 @@ class RobotFrameworkLexer(Lexer): *New in Pygments 1.6.* """ name = 'RobotFramework' - aliases = ['RobotFramework', 'robotframework'] + aliases = ['robotframework'] filenames = ['*.txt', '*.robot'] mimetypes = ['text/x-robotframework'] |
