diff options
| author | Georg Brandl <georg@python.org> | 2006-10-30 17:07:34 +0100 |
|---|---|---|
| committer | Georg Brandl <georg@python.org> | 2006-10-30 17:07:34 +0100 |
| commit | 0fd44d19ad7eb8c1d489891104303bc09f2b5c69 (patch) | |
| tree | fa24ce3d661c4c737fd882ad7d55b8c9323a2409 /pygments/__init__.py | |
| parent | 924030a82ee2d6b9d65ceec30f199cde0330c7c6 (diff) | |
| download | pygments-git-0fd44d19ad7eb8c1d489891104303bc09f2b5c69.tar.gz | |
[svn] Release 0.5.10.5.1
Diffstat (limited to 'pygments/__init__.py')
| -rw-r--r-- | pygments/__init__.py | 4 |
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) |
