diff options
author | Georg Brandl <georg@python.org> | 2017-01-22 18:44:31 +0000 |
---|---|---|
committer | Georg Brandl <georg@python.org> | 2017-01-22 18:44:31 +0000 |
commit | b91760e77967c722634e73d172d6336d6deccbcd (patch) | |
tree | 20df3d29b23d35bd9df6587be877f1b9a5e97170 /pygments/cmdline.py | |
parent | b531554371884768cf0e7677494efd5c3c12c4ba (diff) | |
parent | e10bb35f1ef246d0f10025f0ecc539b1c44ea60d (diff) | |
download | pygments-git-b91760e77967c722634e73d172d6336d6deccbcd.tar.gz |
Merged in EricFromCanada/pygments-main (pull request #619)
update LassoLexer
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 00745edc..b17864ef 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. """ @@ -223,7 +223,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`` |