From 10b0ec24cefc4e2c36a04e1250a0635051071f35 Mon Sep 17 00:00:00 2001 From: Andi Albrecht Date: Wed, 7 Oct 2020 08:54:27 +0200 Subject: Update copyright notice. --- sqlparse/__init__.py | 2 +- sqlparse/__main__.py | 2 +- sqlparse/cli.py | 2 +- sqlparse/engine/__init__.py | 2 +- sqlparse/engine/filter_stack.py | 2 +- sqlparse/engine/grouping.py | 2 +- sqlparse/engine/statement_splitter.py | 2 +- sqlparse/exceptions.py | 2 +- sqlparse/filters/__init__.py | 2 +- sqlparse/filters/aligned_indent.py | 2 +- sqlparse/filters/others.py | 2 +- sqlparse/filters/output.py | 2 +- sqlparse/filters/reindent.py | 2 +- sqlparse/filters/right_margin.py | 2 +- sqlparse/filters/tokens.py | 2 +- sqlparse/formatter.py | 2 +- sqlparse/keywords.py | 2 +- sqlparse/lexer.py | 2 +- sqlparse/sql.py | 2 +- sqlparse/tokens.py | 2 +- sqlparse/utils.py | 2 +- 21 files changed, 21 insertions(+), 21 deletions(-) (limited to 'sqlparse') diff --git a/sqlparse/__init__.py b/sqlparse/__init__.py index 5dcd982..aeafac4 100644 --- a/sqlparse/__init__.py +++ b/sqlparse/__init__.py @@ -1,5 +1,5 @@ # -# Copyright (C) 2009-2018 the sqlparse authors and contributors +# Copyright (C) 2009-2020 the sqlparse authors and contributors # # # This module is part of python-sqlparse and is released under diff --git a/sqlparse/__main__.py b/sqlparse/__main__.py index 3e6d325..2bf2513 100644 --- a/sqlparse/__main__.py +++ b/sqlparse/__main__.py @@ -1,6 +1,6 @@ #!/usr/bin/env python # -# Copyright (C) 2009-2018 the sqlparse authors and contributors +# Copyright (C) 2009-2020 the sqlparse authors and contributors # # # This module is part of python-sqlparse and is released under diff --git a/sqlparse/cli.py b/sqlparse/cli.py index 957d220..7a8aacb 100755 --- a/sqlparse/cli.py +++ b/sqlparse/cli.py @@ -1,6 +1,6 @@ #!/usr/bin/env python # -# Copyright (C) 2009-2018 the sqlparse authors and contributors +# Copyright (C) 2009-2020 the sqlparse authors and contributors # # # This module is part of python-sqlparse and is released under diff --git a/sqlparse/engine/__init__.py b/sqlparse/engine/__init__.py index 67ecc6e..6d54d51 100644 --- a/sqlparse/engine/__init__.py +++ b/sqlparse/engine/__init__.py @@ -1,5 +1,5 @@ # -# Copyright (C) 2009-2018 the sqlparse authors and contributors +# Copyright (C) 2009-2020 the sqlparse authors and contributors # # # This module is part of python-sqlparse and is released under diff --git a/sqlparse/engine/filter_stack.py b/sqlparse/engine/filter_stack.py index 295c2c1..9665a22 100644 --- a/sqlparse/engine/filter_stack.py +++ b/sqlparse/engine/filter_stack.py @@ -1,5 +1,5 @@ # -# Copyright (C) 2009-2018 the sqlparse authors and contributors +# Copyright (C) 2009-2020 the sqlparse authors and contributors # # # This module is part of python-sqlparse and is released under diff --git a/sqlparse/engine/grouping.py b/sqlparse/engine/grouping.py index fd1b18d..175ae8e 100644 --- a/sqlparse/engine/grouping.py +++ b/sqlparse/engine/grouping.py @@ -1,5 +1,5 @@ # -# Copyright (C) 2009-2018 the sqlparse authors and contributors +# Copyright (C) 2009-2020 the sqlparse authors and contributors # # # This module is part of python-sqlparse and is released under diff --git a/sqlparse/engine/statement_splitter.py b/sqlparse/engine/statement_splitter.py index afe53d0..a991959 100644 --- a/sqlparse/engine/statement_splitter.py +++ b/sqlparse/engine/statement_splitter.py @@ -1,5 +1,5 @@ # -# Copyright (C) 2009-2018 the sqlparse authors and contributors +# Copyright (C) 2009-2020 the sqlparse authors and contributors # # # This module is part of python-sqlparse and is released under diff --git a/sqlparse/exceptions.py b/sqlparse/exceptions.py index 687c20c..11285da 100644 --- a/sqlparse/exceptions.py +++ b/sqlparse/exceptions.py @@ -1,5 +1,5 @@ # -# Copyright (C) 2009-2018 the sqlparse authors and contributors +# Copyright (C) 2009-2020 the sqlparse authors and contributors # # # This module is part of python-sqlparse and is released under diff --git a/sqlparse/filters/__init__.py b/sqlparse/filters/__init__.py index ced03ea..5bd6b32 100644 --- a/sqlparse/filters/__init__.py +++ b/sqlparse/filters/__init__.py @@ -1,5 +1,5 @@ # -# Copyright (C) 2009-2018 the sqlparse authors and contributors +# Copyright (C) 2009-2020 the sqlparse authors and contributors # # # This module is part of python-sqlparse and is released under diff --git a/sqlparse/filters/aligned_indent.py b/sqlparse/filters/aligned_indent.py index 445d022..dc60926 100644 --- a/sqlparse/filters/aligned_indent.py +++ b/sqlparse/filters/aligned_indent.py @@ -1,5 +1,5 @@ # -# Copyright (C) 2009-2018 the sqlparse authors and contributors +# Copyright (C) 2009-2020 the sqlparse authors and contributors # # # This module is part of python-sqlparse and is released under diff --git a/sqlparse/filters/others.py b/sqlparse/filters/others.py index ed04f8e..e0e1ca1 100644 --- a/sqlparse/filters/others.py +++ b/sqlparse/filters/others.py @@ -1,5 +1,5 @@ # -# Copyright (C) 2009-2018 the sqlparse authors and contributors +# Copyright (C) 2009-2020 the sqlparse authors and contributors # # # This module is part of python-sqlparse and is released under diff --git a/sqlparse/filters/output.py b/sqlparse/filters/output.py index f34b29f..253537e 100644 --- a/sqlparse/filters/output.py +++ b/sqlparse/filters/output.py @@ -1,5 +1,5 @@ # -# Copyright (C) 2009-2018 the sqlparse authors and contributors +# Copyright (C) 2009-2020 the sqlparse authors and contributors # # # This module is part of python-sqlparse and is released under diff --git a/sqlparse/filters/reindent.py b/sqlparse/filters/reindent.py index ced9f83..3c9cd9f 100644 --- a/sqlparse/filters/reindent.py +++ b/sqlparse/filters/reindent.py @@ -1,5 +1,5 @@ # -# Copyright (C) 2009-2018 the sqlparse authors and contributors +# Copyright (C) 2009-2020 the sqlparse authors and contributors # # # This module is part of python-sqlparse and is released under diff --git a/sqlparse/filters/right_margin.py b/sqlparse/filters/right_margin.py index e263718..3e67056 100644 --- a/sqlparse/filters/right_margin.py +++ b/sqlparse/filters/right_margin.py @@ -1,5 +1,5 @@ # -# Copyright (C) 2009-2018 the sqlparse authors and contributors +# Copyright (C) 2009-2020 the sqlparse authors and contributors # # # This module is part of python-sqlparse and is released under diff --git a/sqlparse/filters/tokens.py b/sqlparse/filters/tokens.py index a40f4b0..cc00a84 100644 --- a/sqlparse/filters/tokens.py +++ b/sqlparse/filters/tokens.py @@ -1,5 +1,5 @@ # -# Copyright (C) 2009-2018 the sqlparse authors and contributors +# Copyright (C) 2009-2020 the sqlparse authors and contributors # # # This module is part of python-sqlparse and is released under diff --git a/sqlparse/formatter.py b/sqlparse/formatter.py index 8016f87..1d1871c 100644 --- a/sqlparse/formatter.py +++ b/sqlparse/formatter.py @@ -1,5 +1,5 @@ # -# Copyright (C) 2009-2018 the sqlparse authors and contributors +# Copyright (C) 2009-2020 the sqlparse authors and contributors # # # This module is part of python-sqlparse and is released under diff --git a/sqlparse/keywords.py b/sqlparse/keywords.py index bb69843..a5deb93 100644 --- a/sqlparse/keywords.py +++ b/sqlparse/keywords.py @@ -1,5 +1,5 @@ # -# Copyright (C) 2009-2018 the sqlparse authors and contributors +# Copyright (C) 2009-2020 the sqlparse authors and contributors # # # This module is part of python-sqlparse and is released under diff --git a/sqlparse/lexer.py b/sqlparse/lexer.py index 836d53d..4397f18 100644 --- a/sqlparse/lexer.py +++ b/sqlparse/lexer.py @@ -1,5 +1,5 @@ # -# Copyright (C) 2009-2018 the sqlparse authors and contributors +# Copyright (C) 2009-2020 the sqlparse authors and contributors # # # This module is part of python-sqlparse and is released under diff --git a/sqlparse/sql.py b/sqlparse/sql.py index a9e11da..6a32c26 100644 --- a/sqlparse/sql.py +++ b/sqlparse/sql.py @@ -1,5 +1,5 @@ # -# Copyright (C) 2009-2018 the sqlparse authors and contributors +# Copyright (C) 2009-2020 the sqlparse authors and contributors # # # This module is part of python-sqlparse and is released under diff --git a/sqlparse/tokens.py b/sqlparse/tokens.py index 193d100..d92bbdc 100644 --- a/sqlparse/tokens.py +++ b/sqlparse/tokens.py @@ -1,5 +1,5 @@ # -# Copyright (C) 2009-2018 the sqlparse authors and contributors +# Copyright (C) 2009-2020 the sqlparse authors and contributors # # # This module is part of python-sqlparse and is released under diff --git a/sqlparse/utils.py b/sqlparse/utils.py index 265378b..299a84c 100644 --- a/sqlparse/utils.py +++ b/sqlparse/utils.py @@ -1,5 +1,5 @@ # -# Copyright (C) 2009-2018 the sqlparse authors and contributors +# Copyright (C) 2009-2020 the sqlparse authors and contributors # # # This module is part of python-sqlparse and is released under -- cgit v1.2.1