summaryrefslogtreecommitdiff
path: root/sqlparse
diff options
context:
space:
mode:
authorAndi Albrecht <albrecht.andi@gmail.com>2020-10-07 08:54:27 +0200
committerAndi Albrecht <albrecht.andi@gmail.com>2020-10-07 08:54:27 +0200
commit10b0ec24cefc4e2c36a04e1250a0635051071f35 (patch)
treee08b0b000c200998498b2ee51eafea03cb48e3fd /sqlparse
parent9a9c88701236406ce4d415ab40a84e3d0dc872d5 (diff)
downloadsqlparse-10b0ec24cefc4e2c36a04e1250a0635051071f35.tar.gz
Update copyright notice.
Diffstat (limited to 'sqlparse')
-rw-r--r--sqlparse/__init__.py2
-rw-r--r--sqlparse/__main__.py2
-rwxr-xr-xsqlparse/cli.py2
-rw-r--r--sqlparse/engine/__init__.py2
-rw-r--r--sqlparse/engine/filter_stack.py2
-rw-r--r--sqlparse/engine/grouping.py2
-rw-r--r--sqlparse/engine/statement_splitter.py2
-rw-r--r--sqlparse/exceptions.py2
-rw-r--r--sqlparse/filters/__init__.py2
-rw-r--r--sqlparse/filters/aligned_indent.py2
-rw-r--r--sqlparse/filters/others.py2
-rw-r--r--sqlparse/filters/output.py2
-rw-r--r--sqlparse/filters/reindent.py2
-rw-r--r--sqlparse/filters/right_margin.py2
-rw-r--r--sqlparse/filters/tokens.py2
-rw-r--r--sqlparse/formatter.py2
-rw-r--r--sqlparse/keywords.py2
-rw-r--r--sqlparse/lexer.py2
-rw-r--r--sqlparse/sql.py2
-rw-r--r--sqlparse/tokens.py2
-rw-r--r--sqlparse/utils.py2
21 files changed, 21 insertions, 21 deletions
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
# <see AUTHORS file>
#
# 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
# <see AUTHORS file>
#
# 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
# <see AUTHORS file>
#
# 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
# <see AUTHORS file>
#
# 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
# <see AUTHORS file>
#
# 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
# <see AUTHORS file>
#
# 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
# <see AUTHORS file>
#
# 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
# <see AUTHORS file>
#
# 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
# <see AUTHORS file>
#
# 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
# <see AUTHORS file>
#
# 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
# <see AUTHORS file>
#
# 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
# <see AUTHORS file>
#
# 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
# <see AUTHORS file>
#
# 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
# <see AUTHORS file>
#
# 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
# <see AUTHORS file>
#
# 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
# <see AUTHORS file>
#
# 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
# <see AUTHORS file>
#
# 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
# <see AUTHORS file>
#
# 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
# <see AUTHORS file>
#
# 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
# <see AUTHORS file>
#
# 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
# <see AUTHORS file>
#
# This module is part of python-sqlparse and is released under