summaryrefslogtreecommitdiff
path: root/pygments/lexers/robotframework.py
diff options
context:
space:
mode:
authorGeorg Brandl <georg@python.org>2019-11-25 06:21:54 +0100
committerGeorg Brandl <georg@python.org>2019-11-25 06:21:54 +0100
commitbb9e8694dde642886e980e297c5f382018e0d812 (patch)
tree230d97deb9cfc198f0e5a7bfca1b402160ef6e17 /pygments/lexers/robotframework.py
parent9ca90d60b125775a688f72b84d9a33e3f9141e3c (diff)
downloadpygments-git-bb9e8694dde642886e980e297c5f382018e0d812.tar.gz
resource, robotframework: stop hogging the .txt extension
Diffstat (limited to 'pygments/lexers/robotframework.py')
-rw-r--r--pygments/lexers/robotframework.py2
1 files changed, 1 insertions, 1 deletions
diff --git a/pygments/lexers/robotframework.py b/pygments/lexers/robotframework.py
index 1288da8d..642c90c5 100644
--- a/pygments/lexers/robotframework.py
+++ b/pygments/lexers/robotframework.py
@@ -64,7 +64,7 @@ class RobotFrameworkLexer(Lexer):
"""
name = 'RobotFramework'
aliases = ['robotframework']
- filenames = ['*.txt', '*.robot']
+ filenames = ['*.robot']
mimetypes = ['text/x-robotframework']
def __init__(self, **options):