Unify license stuff from last see(1) import. - plumber - Plumber – a modern approach to plumbing
 (HTM) git clone git://r-36.net/plumber
 (DIR) Log
 (DIR) Files
 (DIR) Refs
 (DIR) README
 (DIR) LICENSE
       ---
 (DIR) commit a57b2721b1eacce1e39f52fb8001a930a1cc3bbb
 (DIR) parent d86f9ba8251740a9155b56ca632c5f9733afec3b
 (HTM) Author: Christoph Lohmann <20h@r-36.net>
       Date:   Wed, 12 Jul 2023 18:09:07 +0200
       
       Unify license stuff from last see(1) import.
       
       Diffstat:
         M LICENSE                             |       2 +-
         M bin/see                             |       9 ++++-----
       
       2 files changed, 5 insertions(+), 6 deletions(-)
       ---
 (DIR) diff --git a/LICENSE b/LICENSE
       @@ -1,4 +1,4 @@
       -© 2007-2017 Christoph Lohmann <20h at r-36 dot net>
       +© 2007-2023 Christoph Lohmann <20h at r-36 dot net>
        
                            GNU GENERAL PUBLIC LICENSE
                               Version 3, 29 June 2007
 (DIR) diff --git a/bin/see b/bin/see
       @@ -1,9 +1,8 @@
        #!/usr/bin/env python
        # coding=utf-8
        #
       -# © 20XX Christoph Lohmann <20h@r-36.net>
       -#
       -# This file is published under the terms of the GPLv3.
       +# Copy me, if you can.
       +# by 20h
        #
        
        import os
       @@ -24,7 +23,7 @@ def main(args):
                except getopt.GetoptError as err:
                        print(str(err))
                        usage(args[0])
       -        
       +
                for o, a in opts:
                        if o == "-h":
                                usage(args[0])
       @@ -33,7 +32,7 @@ def main(args):
        
                if len(largs) < 1:
                        usage(args[0])
       -        
       +
                caps = mailcap.getcaps()
                (typ, enc) = mimetypes.guess_type(largs[0], strict=False)
                if typ == None: