summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorblackbird <devnull@localhost>2006-10-30 16:17:22 +0100
committerblackbird <devnull@localhost>2006-10-30 16:17:22 +0100
commit19c5b33a63103073244ec6294a2b42d4b3279662 (patch)
tree8e2052858f8be0c98c64d23f46829c361139aa6b
parent9750880c152d3170d5f41de4892bed9bfc434695 (diff)
downloadpygments-19c5b33a63103073244ec6294a2b42d4b3279662.tar.gz
[svn] fixed "pygmentize -L" bug (but the output format looks strange on an 80 char width terminal, maybe we should change that)
-rw-r--r--pygments/__init__.py2
1 files changed, 1 insertions, 1 deletions
diff --git a/pygments/__init__.py b/pygments/__init__.py
index e67ae7cd..54187e4b 100644
--- a/pygments/__init__.py
+++ b/pygments/__init__.py
@@ -144,7 +144,7 @@ The -V option prints the package version.
info = []
maxlen = 0
- for _, fullname, names, exts in LEXERS.itervalues():
+ for _, fullname, names, exts, mimetypes in LEXERS.itervalues():
tup = (', '.join(names)+':', fullname,
exts and '(extensions ' + ', '.join(exts) + ')' or '')
info.append(tup)