summaryrefslogtreecommitdiff
path: root/sqlparse
diff options
context:
space:
mode:
authorAndi Albrecht <albrecht.andi@gmail.com>2018-07-31 08:12:54 +0200
committerAndi Albrecht <albrecht.andi@gmail.com>2018-07-31 08:12:54 +0200
commit3853a076c63493f43e969cf4ddd2e642e92f02fb (patch)
tree94b77da1cf704ccd2aee446cc23c2f4c0ab8b545 /sqlparse
parentceda430172967e5edf64434fd6831acf577ce7f9 (diff)
downloadsqlparse-3853a076c63493f43e969cf4ddd2e642e92f02fb.tar.gz
Update copyright header (fixes #372).
Diffstat (limited to 'sqlparse')
-rw-r--r--sqlparse/__init__.py3
-rw-r--r--sqlparse/__main__.py3
-rwxr-xr-xsqlparse/cli.py3
-rw-r--r--sqlparse/compat.py3
-rw-r--r--sqlparse/engine/__init__.py3
-rw-r--r--sqlparse/engine/filter_stack.py3
-rw-r--r--sqlparse/engine/grouping.py3
-rw-r--r--sqlparse/engine/statement_splitter.py3
-rw-r--r--sqlparse/exceptions.py3
-rw-r--r--sqlparse/filters/__init__.py3
-rw-r--r--sqlparse/filters/aligned_indent.py3
-rw-r--r--sqlparse/filters/others.py3
-rw-r--r--sqlparse/filters/output.py3
-rw-r--r--sqlparse/filters/reindent.py3
-rw-r--r--sqlparse/filters/right_margin.py3
-rw-r--r--sqlparse/filters/tokens.py3
-rw-r--r--sqlparse/formatter.py3
-rw-r--r--sqlparse/keywords.py3
-rw-r--r--sqlparse/lexer.py3
-rw-r--r--sqlparse/sql.py3
-rw-r--r--sqlparse/tokens.py3
-rw-r--r--sqlparse/utils.py3
22 files changed, 44 insertions, 22 deletions
diff --git a/sqlparse/__init__.py b/sqlparse/__init__.py
index 066533b..19e860c 100644
--- a/sqlparse/__init__.py
+++ b/sqlparse/__init__.py
@@ -1,6 +1,7 @@
# -*- coding: utf-8 -*-
#
-# Copyright (C) 2016 Andi Albrecht, albrecht.andi@gmail.com
+# Copyright (C) 2009-2018 the sqlparse authors and contributors
+# <see AUTHORS file>
#
# This module is part of python-sqlparse and is released under
# the BSD License: https://opensource.org/licenses/BSD-3-Clause
diff --git a/sqlparse/__main__.py b/sqlparse/__main__.py
index af612b3..867d75d 100644
--- a/sqlparse/__main__.py
+++ b/sqlparse/__main__.py
@@ -1,7 +1,8 @@
#!/usr/bin/env python
# -*- coding: utf-8 -*-
#
-# Copyright (C) 2016 Andi Albrecht, albrecht.andi@gmail.com
+# Copyright (C) 2009-2018 the sqlparse authors and contributors
+# <see AUTHORS file>
#
# This module is part of python-sqlparse and is released under
# the BSD License: https://opensource.org/licenses/BSD-3-Clause
diff --git a/sqlparse/cli.py b/sqlparse/cli.py
index 14e644b..25555a5 100755
--- a/sqlparse/cli.py
+++ b/sqlparse/cli.py
@@ -1,7 +1,8 @@
#!/usr/bin/env python
# -*- coding: utf-8 -*-
#
-# Copyright (C) 2016 Andi Albrecht, albrecht.andi@gmail.com
+# Copyright (C) 2009-2018 the sqlparse authors and contributors
+# <see AUTHORS file>
#
# This module is part of python-sqlparse and is released under
# the BSD License: https://opensource.org/licenses/BSD-3-Clause
diff --git a/sqlparse/compat.py b/sqlparse/compat.py
index 835163d..4ca79a2 100644
--- a/sqlparse/compat.py
+++ b/sqlparse/compat.py
@@ -1,6 +1,7 @@
# -*- coding: utf-8 -*-
#
-# Copyright (C) 2016 Andi Albrecht, albrecht.andi@gmail.com
+# Copyright (C) 2009-2018 the sqlparse authors and contributors
+# <see AUTHORS file>
#
# This module is part of python-sqlparse and is released under
# the BSD License: https://opensource.org/licenses/BSD-3-Clause
diff --git a/sqlparse/engine/__init__.py b/sqlparse/engine/__init__.py
index af27dee..0b3f3eb 100644
--- a/sqlparse/engine/__init__.py
+++ b/sqlparse/engine/__init__.py
@@ -1,6 +1,7 @@
# -*- coding: utf-8 -*-
#
-# Copyright (C) 2016 Andi Albrecht, albrecht.andi@gmail.com
+# Copyright (C) 2009-2018 the sqlparse authors and contributors
+# <see AUTHORS file>
#
# This module is part of python-sqlparse and is released under
# the BSD License: https://opensource.org/licenses/BSD-3-Clause
diff --git a/sqlparse/engine/filter_stack.py b/sqlparse/engine/filter_stack.py
index 02cd901..fc77fd6 100644
--- a/sqlparse/engine/filter_stack.py
+++ b/sqlparse/engine/filter_stack.py
@@ -1,6 +1,7 @@
# -*- coding: utf-8 -*-
#
-# Copyright (C) 2016 Andi Albrecht, albrecht.andi@gmail.com
+# Copyright (C) 2009-2018 the sqlparse authors and contributors
+# <see AUTHORS file>
#
# This module is part of python-sqlparse and is released under
# the BSD License: https://opensource.org/licenses/BSD-3-Clause
diff --git a/sqlparse/engine/grouping.py b/sqlparse/engine/grouping.py
index 5078389..2cc7601 100644
--- a/sqlparse/engine/grouping.py
+++ b/sqlparse/engine/grouping.py
@@ -1,6 +1,7 @@
# -*- coding: utf-8 -*-
#
-# Copyright (C) 2016 Andi Albrecht, albrecht.andi@gmail.com
+# Copyright (C) 2009-2018 the sqlparse authors and contributors
+# <see AUTHORS file>
#
# This module is part of python-sqlparse and is released under
# the BSD License: https://opensource.org/licenses/BSD-3-Clause
diff --git a/sqlparse/engine/statement_splitter.py b/sqlparse/engine/statement_splitter.py
index 87fe993..d610b5e 100644
--- a/sqlparse/engine/statement_splitter.py
+++ b/sqlparse/engine/statement_splitter.py
@@ -1,6 +1,7 @@
# -*- coding: utf-8 -*-
#
-# Copyright (C) 2016 Andi Albrecht, albrecht.andi@gmail.com
+# Copyright (C) 2009-2018 the sqlparse authors and contributors
+# <see AUTHORS file>
#
# This module is part of python-sqlparse and is released under
# the BSD License: https://opensource.org/licenses/BSD-3-Clause
diff --git a/sqlparse/exceptions.py b/sqlparse/exceptions.py
index 87b5c00..01e60f7 100644
--- a/sqlparse/exceptions.py
+++ b/sqlparse/exceptions.py
@@ -1,6 +1,7 @@
# -*- coding: utf-8 -*-
#
-# Copyright (C) 2016 Andi Albrecht, albrecht.andi@gmail.com
+# Copyright (C) 2009-2018 the sqlparse authors and contributors
+# <see AUTHORS file>
#
# This module is part of python-sqlparse and is released under
# the BSD License: https://opensource.org/licenses/BSD-3-Clause
diff --git a/sqlparse/filters/__init__.py b/sqlparse/filters/__init__.py
index 9eb301a..c60d84d 100644
--- a/sqlparse/filters/__init__.py
+++ b/sqlparse/filters/__init__.py
@@ -1,6 +1,7 @@
# -*- coding: utf-8 -*-
#
-# Copyright (C) 2016 Andi Albrecht, albrecht.andi@gmail.com
+# Copyright (C) 2009-2018 the sqlparse authors and contributors
+# <see AUTHORS file>
#
# This module is part of python-sqlparse and is released under
# the BSD License: https://opensource.org/licenses/BSD-3-Clause
diff --git a/sqlparse/filters/aligned_indent.py b/sqlparse/filters/aligned_indent.py
index ea06c8d..906e330 100644
--- a/sqlparse/filters/aligned_indent.py
+++ b/sqlparse/filters/aligned_indent.py
@@ -1,6 +1,7 @@
# -*- coding: utf-8 -*-
#
-# Copyright (C) 2016 Andi Albrecht, albrecht.andi@gmail.com
+# Copyright (C) 2009-2018 the sqlparse authors and contributors
+# <see AUTHORS file>
#
# This module is part of python-sqlparse and is released under
# the BSD License: https://opensource.org/licenses/BSD-3-Clause
diff --git a/sqlparse/filters/others.py b/sqlparse/filters/others.py
index a6ba371..df4d861 100644
--- a/sqlparse/filters/others.py
+++ b/sqlparse/filters/others.py
@@ -1,6 +1,7 @@
# -*- coding: utf-8 -*-
#
-# Copyright (C) 2016 Andi Albrecht, albrecht.andi@gmail.com
+# Copyright (C) 2009-2018 the sqlparse authors and contributors
+# <see AUTHORS file>
#
# This module is part of python-sqlparse and is released under
# the BSD License: https://opensource.org/licenses/BSD-3-Clause
diff --git a/sqlparse/filters/output.py b/sqlparse/filters/output.py
index ca96080..3fbc46d 100644
--- a/sqlparse/filters/output.py
+++ b/sqlparse/filters/output.py
@@ -1,6 +1,7 @@
# -*- coding: utf-8 -*-
#
-# Copyright (C) 2016 Andi Albrecht, albrecht.andi@gmail.com
+# Copyright (C) 2009-2018 the sqlparse authors and contributors
+# <see AUTHORS file>
#
# This module is part of python-sqlparse and is released under
# the BSD License: https://opensource.org/licenses/BSD-3-Clause
diff --git a/sqlparse/filters/reindent.py b/sqlparse/filters/reindent.py
index 3088d6f..68593c0 100644
--- a/sqlparse/filters/reindent.py
+++ b/sqlparse/filters/reindent.py
@@ -1,6 +1,7 @@
# -*- coding: utf-8 -*-
#
-# Copyright (C) 2016 Andi Albrecht, albrecht.andi@gmail.com
+# Copyright (C) 2009-2018 the sqlparse authors and contributors
+# <see AUTHORS file>
#
# This module is part of python-sqlparse and is released under
# the BSD License: https://opensource.org/licenses/BSD-3-Clause
diff --git a/sqlparse/filters/right_margin.py b/sqlparse/filters/right_margin.py
index c6608c9..1658138 100644
--- a/sqlparse/filters/right_margin.py
+++ b/sqlparse/filters/right_margin.py
@@ -1,6 +1,7 @@
# -*- coding: utf-8 -*-
#
-# Copyright (C) 2016 Andi Albrecht, albrecht.andi@gmail.com
+# Copyright (C) 2009-2018 the sqlparse authors and contributors
+# <see AUTHORS file>
#
# This module is part of python-sqlparse and is released under
# the BSD License: https://opensource.org/licenses/BSD-3-Clause
diff --git a/sqlparse/filters/tokens.py b/sqlparse/filters/tokens.py
index a1d4b05..93182b1 100644
--- a/sqlparse/filters/tokens.py
+++ b/sqlparse/filters/tokens.py
@@ -1,6 +1,7 @@
# -*- coding: utf-8 -*-
#
-# Copyright (C) 2016 Andi Albrecht, albrecht.andi@gmail.com
+# Copyright (C) 2009-2018 the sqlparse authors and contributors
+# <see AUTHORS file>
#
# This module is part of python-sqlparse and is released under
# the BSD License: https://opensource.org/licenses/BSD-3-Clause
diff --git a/sqlparse/formatter.py b/sqlparse/formatter.py
index ecb1e2f..8962759 100644
--- a/sqlparse/formatter.py
+++ b/sqlparse/formatter.py
@@ -1,6 +1,7 @@
# -*- coding: utf-8 -*-
#
-# Copyright (C) 2016 Andi Albrecht, albrecht.andi@gmail.com
+# Copyright (C) 2009-2018 the sqlparse authors and contributors
+# <see AUTHORS file>
#
# This module is part of python-sqlparse and is released under
# the BSD License: https://opensource.org/licenses/BSD-3-Clause
diff --git a/sqlparse/keywords.py b/sqlparse/keywords.py
index 18a27bd..e1579f1 100644
--- a/sqlparse/keywords.py
+++ b/sqlparse/keywords.py
@@ -1,6 +1,7 @@
# -*- coding: utf-8 -*-
#
-# Copyright (C) 2016 Andi Albrecht, albrecht.andi@gmail.com
+# Copyright (C) 2009-2018 the sqlparse authors and contributors
+# <see AUTHORS file>
#
# This module is part of python-sqlparse and is released under
# the BSD License: https://opensource.org/licenses/BSD-3-Clause
diff --git a/sqlparse/lexer.py b/sqlparse/lexer.py
index d1b1699..66e0689 100644
--- a/sqlparse/lexer.py
+++ b/sqlparse/lexer.py
@@ -1,6 +1,7 @@
# -*- coding: utf-8 -*-
#
-# Copyright (C) 2016 Andi Albrecht, albrecht.andi@gmail.com
+# Copyright (C) 2009-2018 the sqlparse authors and contributors
+# <see AUTHORS file>
#
# This module is part of python-sqlparse and is released under
# the BSD License: https://opensource.org/licenses/BSD-3-Clause
diff --git a/sqlparse/sql.py b/sqlparse/sql.py
index f10e695..5acce5c 100644
--- a/sqlparse/sql.py
+++ b/sqlparse/sql.py
@@ -1,6 +1,7 @@
# -*- coding: utf-8 -*-
#
-# Copyright (C) 2016 Andi Albrecht, albrecht.andi@gmail.com
+# Copyright (C) 2009-2018 the sqlparse authors and contributors
+# <see AUTHORS file>
#
# This module is part of python-sqlparse and is released under
# the BSD License: https://opensource.org/licenses/BSD-3-Clause
diff --git a/sqlparse/tokens.py b/sqlparse/tokens.py
index efc1e09..41e3742 100644
--- a/sqlparse/tokens.py
+++ b/sqlparse/tokens.py
@@ -1,6 +1,7 @@
# -*- coding: utf-8 -*-
#
-# Copyright (C) 2016 Andi Albrecht, albrecht.andi@gmail.com
+# Copyright (C) 2009-2018 the sqlparse authors and contributors
+# <see AUTHORS file>
#
# This module is part of python-sqlparse and is released under
# the BSD License: https://opensource.org/licenses/BSD-3-Clause
diff --git a/sqlparse/utils.py b/sqlparse/utils.py
index ffa029b..3283274 100644
--- a/sqlparse/utils.py
+++ b/sqlparse/utils.py
@@ -1,6 +1,7 @@
# -*- coding: utf-8 -*-
#
-# Copyright (C) 2016 Andi Albrecht, albrecht.andi@gmail.com
+# Copyright (C) 2009-2018 the sqlparse authors and contributors
+# <see AUTHORS file>
#
# This module is part of python-sqlparse and is released under
# the BSD License: https://opensource.org/licenses/BSD-3-Clause