summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorgbrandl <devnull@localhost>2006-10-30 17:07:34 +0100
committergbrandl <devnull@localhost>2006-10-30 17:07:34 +0100
commit3135c180efc8b582d96d9b3663cd93e47e0079f3 (patch)
treefa24ce3d661c4c737fd882ad7d55b8c9323a2409
parent12c0c95e3ff6bb2f1e28d90fd5e6cb04551d853a (diff)
downloadpygments-3135c180efc8b582d96d9b3663cd93e47e0079f3.tar.gz
[svn] Release 0.5.10.5.1
-rw-r--r--pygments/__init__.py4
1 files changed, 2 insertions, 2 deletions
diff --git a/pygments/__init__.py b/pygments/__init__.py
index 54187e4b..edf63fd2 100644
--- a/pygments/__init__.py
+++ b/pygments/__init__.py
@@ -23,7 +23,7 @@
:license: GNU LGPL, see LICENSE for more details.
"""
-__version__ = '0.5'
+__version__ = '0.5.1'
__docformat__ = 'restructuredtext'
__license__ = 'GNU Lesser General Public License (LGPL)'
__author__ = 'Georg Brandl <g.brandl@gmx.net>'
@@ -144,7 +144,7 @@ The -V option prints the package version.
info = []
maxlen = 0
- for _, fullname, names, exts, mimetypes in LEXERS.itervalues():
+ for _, fullname, names, exts, _ in LEXERS.itervalues():
tup = (', '.join(names)+':', fullname,
exts and '(extensions ' + ', '.join(exts) + ')' or '')
info.append(tup)