diff options
author | Georg Brandl <georg@python.org> | 2017-01-22 18:50:35 +0000 |
---|---|---|
committer | Georg Brandl <georg@python.org> | 2017-01-22 18:50:35 +0000 |
commit | 041b80fab1922800ae0618fd4d3d8d78bf7063b4 (patch) | |
tree | 79540afc389a29e894804229b6ba2dbc78c67760 /pygments/cmdline.py | |
parent | 635f722ec3eb791e19f41b3231d74923d73bd729 (diff) | |
parent | dbfa7bbacf9ec1a987f632f01c040285269f690b (diff) | |
download | pygments-041b80fab1922800ae0618fd4d3d8d78bf7063b4.tar.gz |
Merged in tprynn/pygments-main/command-line-lexer-formatter (pull request #559)
Custom Lexer/Formatter File Loading
Diffstat (limited to 'pygments/cmdline.py')
-rw-r--r-- | pygments/cmdline.py | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/pygments/cmdline.py b/pygments/cmdline.py index 69604481..98c3ec37 100644 --- a/pygments/cmdline.py +++ b/pygments/cmdline.py @@ -5,7 +5,7 @@ Command line interface. - :copyright: Copyright 2006-2015 by the Pygments team, see AUTHORS. + :copyright: Copyright 2006-2017 by the Pygments team, see AUTHORS. :license: BSD, see LICENSE for details. """ @@ -231,7 +231,7 @@ def main_inner(popts, args, usage): return 0 if opts.pop('-V', None) is not None: - print('Pygments version %s, (c) 2006-2015 by Georg Brandl.' % __version__) + print('Pygments version %s, (c) 2006-2017 by Georg Brandl.' % __version__) return 0 # handle ``pygmentize -L`` |