summaryrefslogtreecommitdiff
path: root/sqlparse
diff options
context:
space:
mode:
authorAndi Albrecht <albrecht.andi@gmail.com>2016-09-14 14:56:34 +0200
committerAndi Albrecht <albrecht.andi@gmail.com>2016-09-14 14:56:34 +0200
commit4430c5c163d8b6ffc89d83b506c8a478037d26ea (patch)
tree692b89f4580c7c8d7d42ef80427a5fc1be6660dc /sqlparse
parent358ad4b9754721f69c6b40333653bd84edb8634f (diff)
downloadsqlparse-4430c5c163d8b6ffc89d83b506c8a478037d26ea.tar.gz
Correct license link (fixes #288).
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/compat.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
22 files changed, 22 insertions, 22 deletions
diff --git a/sqlparse/__init__.py b/sqlparse/__init__.py
index 8aef5b1..b266b48 100644
--- a/sqlparse/__init__.py
+++ b/sqlparse/__init__.py
@@ -3,7 +3,7 @@
# Copyright (C) 2016 Andi Albrecht, albrecht.andi@gmail.com
#
# This module is part of python-sqlparse and is released under
-# the BSD License: http://www.opensource.org/licenses/bsd-license.php
+# the BSD License: https://opensource.org/licenses/BSD-3-Clause
"""Parse SQL statements."""
diff --git a/sqlparse/__main__.py b/sqlparse/__main__.py
index 0020038..af612b3 100644
--- a/sqlparse/__main__.py
+++ b/sqlparse/__main__.py
@@ -4,7 +4,7 @@
# Copyright (C) 2016 Andi Albrecht, albrecht.andi@gmail.com
#
# This module is part of python-sqlparse and is released under
-# the BSD License: http://www.opensource.org/licenses/bsd-license.php
+# the BSD License: https://opensource.org/licenses/BSD-3-Clause
"""Entrypoint module for `python -m sqlparse`.
diff --git a/sqlparse/cli.py b/sqlparse/cli.py
index c329fdb..9479dd1 100755
--- a/sqlparse/cli.py
+++ b/sqlparse/cli.py
@@ -4,7 +4,7 @@
# Copyright (C) 2016 Andi Albrecht, albrecht.andi@gmail.com
#
# This module is part of python-sqlparse and is released under
-# the BSD License: http://www.opensource.org/licenses/bsd-license.php
+# the BSD License: https://opensource.org/licenses/BSD-3-Clause
"""Module that contains the command line app.
diff --git a/sqlparse/compat.py b/sqlparse/compat.py
index 933e0be..15bf0bf 100644
--- a/sqlparse/compat.py
+++ b/sqlparse/compat.py
@@ -3,7 +3,7 @@
# Copyright (C) 2016 Andi Albrecht, albrecht.andi@gmail.com
#
# This module is part of python-sqlparse and is released under
-# the BSD License: http://www.opensource.org/licenses/bsd-license.php
+# the BSD License: https://opensource.org/licenses/BSD-3-Clause
"""Python 2/3 compatibility.
diff --git a/sqlparse/engine/__init__.py b/sqlparse/engine/__init__.py
index 2c3599e..af27dee 100644
--- a/sqlparse/engine/__init__.py
+++ b/sqlparse/engine/__init__.py
@@ -3,7 +3,7 @@
# Copyright (C) 2016 Andi Albrecht, albrecht.andi@gmail.com
#
# This module is part of python-sqlparse and is released under
-# the BSD License: http://www.opensource.org/licenses/bsd-license.php
+# the BSD License: https://opensource.org/licenses/BSD-3-Clause
from sqlparse.engine import grouping
from sqlparse.engine.filter_stack import FilterStack
diff --git a/sqlparse/engine/filter_stack.py b/sqlparse/engine/filter_stack.py
index e51c6f2..02cd901 100644
--- a/sqlparse/engine/filter_stack.py
+++ b/sqlparse/engine/filter_stack.py
@@ -3,7 +3,7 @@
# Copyright (C) 2016 Andi Albrecht, albrecht.andi@gmail.com
#
# This module is part of python-sqlparse and is released under
-# the BSD License: http://www.opensource.org/licenses/bsd-license.php
+# the BSD License: https://opensource.org/licenses/BSD-3-Clause
"""filter"""
diff --git a/sqlparse/engine/grouping.py b/sqlparse/engine/grouping.py
index 258abc8..bae3e24 100644
--- a/sqlparse/engine/grouping.py
+++ b/sqlparse/engine/grouping.py
@@ -3,7 +3,7 @@
# Copyright (C) 2016 Andi Albrecht, albrecht.andi@gmail.com
#
# This module is part of python-sqlparse and is released under
-# the BSD License: http://www.opensource.org/licenses/bsd-license.php
+# the BSD License: https://opensource.org/licenses/BSD-3-Clause
from sqlparse import sql
from sqlparse import tokens as T
diff --git a/sqlparse/engine/statement_splitter.py b/sqlparse/engine/statement_splitter.py
index ee0e9e1..6c5b599 100644
--- a/sqlparse/engine/statement_splitter.py
+++ b/sqlparse/engine/statement_splitter.py
@@ -3,7 +3,7 @@
# Copyright (C) 2016 Andi Albrecht, albrecht.andi@gmail.com
#
# This module is part of python-sqlparse and is released under
-# the BSD License: http://www.opensource.org/licenses/bsd-license.php
+# the BSD License: https://opensource.org/licenses/BSD-3-Clause
from sqlparse import sql, tokens as T
diff --git a/sqlparse/exceptions.py b/sqlparse/exceptions.py
index d2948ca..87b5c00 100644
--- a/sqlparse/exceptions.py
+++ b/sqlparse/exceptions.py
@@ -3,7 +3,7 @@
# Copyright (C) 2016 Andi Albrecht, albrecht.andi@gmail.com
#
# This module is part of python-sqlparse and is released under
-# the BSD License: http://www.opensource.org/licenses/bsd-license.php
+# the BSD License: https://opensource.org/licenses/BSD-3-Clause
"""Exceptions used in this package."""
diff --git a/sqlparse/filters/__init__.py b/sqlparse/filters/__init__.py
index f2525c5..9eb301a 100644
--- a/sqlparse/filters/__init__.py
+++ b/sqlparse/filters/__init__.py
@@ -3,7 +3,7 @@
# Copyright (C) 2016 Andi Albrecht, albrecht.andi@gmail.com
#
# This module is part of python-sqlparse and is released under
-# the BSD License: http://www.opensource.org/licenses/bsd-license.php
+# the BSD License: https://opensource.org/licenses/BSD-3-Clause
from sqlparse.filters.others import SerializerUnicode
from sqlparse.filters.others import StripCommentsFilter
diff --git a/sqlparse/filters/aligned_indent.py b/sqlparse/filters/aligned_indent.py
index ad2d014..c04d06d 100644
--- a/sqlparse/filters/aligned_indent.py
+++ b/sqlparse/filters/aligned_indent.py
@@ -3,7 +3,7 @@
# Copyright (C) 2016 Andi Albrecht, albrecht.andi@gmail.com
#
# This module is part of python-sqlparse and is released under
-# the BSD License: http://www.opensource.org/licenses/bsd-license.php
+# the BSD License: https://opensource.org/licenses/BSD-3-Clause
from sqlparse import sql, tokens as T
from sqlparse.compat import text_type
diff --git a/sqlparse/filters/others.py b/sqlparse/filters/others.py
index 9c2f1ce..3f0e537 100644
--- a/sqlparse/filters/others.py
+++ b/sqlparse/filters/others.py
@@ -3,7 +3,7 @@
# Copyright (C) 2016 Andi Albrecht, albrecht.andi@gmail.com
#
# This module is part of python-sqlparse and is released under
-# the BSD License: http://www.opensource.org/licenses/bsd-license.php
+# the BSD License: https://opensource.org/licenses/BSD-3-Clause
from sqlparse import sql, tokens as T
from sqlparse.utils import split_unquoted_newlines
diff --git a/sqlparse/filters/output.py b/sqlparse/filters/output.py
index a029251..c3425df 100644
--- a/sqlparse/filters/output.py
+++ b/sqlparse/filters/output.py
@@ -3,7 +3,7 @@
# Copyright (C) 2016 Andi Albrecht, albrecht.andi@gmail.com
#
# This module is part of python-sqlparse and is released under
-# the BSD License: http://www.opensource.org/licenses/bsd-license.php
+# the BSD License: https://opensource.org/licenses/BSD-3-Clause
from sqlparse import sql, tokens as T
from sqlparse.compat import text_type
diff --git a/sqlparse/filters/reindent.py b/sqlparse/filters/reindent.py
index 70f3936..dab4d03 100644
--- a/sqlparse/filters/reindent.py
+++ b/sqlparse/filters/reindent.py
@@ -3,7 +3,7 @@
# Copyright (C) 2016 Andi Albrecht, albrecht.andi@gmail.com
#
# This module is part of python-sqlparse and is released under
-# the BSD License: http://www.opensource.org/licenses/bsd-license.php
+# the BSD License: https://opensource.org/licenses/BSD-3-Clause
from sqlparse import sql, tokens as T
from sqlparse.compat import text_type
diff --git a/sqlparse/filters/right_margin.py b/sqlparse/filters/right_margin.py
index 86cf5fd..c6608c9 100644
--- a/sqlparse/filters/right_margin.py
+++ b/sqlparse/filters/right_margin.py
@@ -3,7 +3,7 @@
# Copyright (C) 2016 Andi Albrecht, albrecht.andi@gmail.com
#
# This module is part of python-sqlparse and is released under
-# the BSD License: http://www.opensource.org/licenses/bsd-license.php
+# the BSD License: https://opensource.org/licenses/BSD-3-Clause
import re
diff --git a/sqlparse/filters/tokens.py b/sqlparse/filters/tokens.py
index 74da52f..a1d4b05 100644
--- a/sqlparse/filters/tokens.py
+++ b/sqlparse/filters/tokens.py
@@ -3,7 +3,7 @@
# Copyright (C) 2016 Andi Albrecht, albrecht.andi@gmail.com
#
# This module is part of python-sqlparse and is released under
-# the BSD License: http://www.opensource.org/licenses/bsd-license.php
+# the BSD License: https://opensource.org/licenses/BSD-3-Clause
from sqlparse import tokens as T
from sqlparse.compat import text_type
diff --git a/sqlparse/formatter.py b/sqlparse/formatter.py
index 8f10557..72b50eb 100644
--- a/sqlparse/formatter.py
+++ b/sqlparse/formatter.py
@@ -3,7 +3,7 @@
# Copyright (C) 2016 Andi Albrecht, albrecht.andi@gmail.com
#
# This module is part of python-sqlparse and is released under
-# the BSD License: http://www.opensource.org/licenses/bsd-license.php
+# the BSD License: https://opensource.org/licenses/BSD-3-Clause
"""SQL formatter"""
diff --git a/sqlparse/keywords.py b/sqlparse/keywords.py
index 22d872e..3336831 100644
--- a/sqlparse/keywords.py
+++ b/sqlparse/keywords.py
@@ -3,7 +3,7 @@
# Copyright (C) 2016 Andi Albrecht, albrecht.andi@gmail.com
#
# This module is part of python-sqlparse and is released under
-# the BSD License: http://www.opensource.org/licenses/bsd-license.php
+# the BSD License: https://opensource.org/licenses/BSD-3-Clause
import re
diff --git a/sqlparse/lexer.py b/sqlparse/lexer.py
index 15a9aef..914b520 100644
--- a/sqlparse/lexer.py
+++ b/sqlparse/lexer.py
@@ -3,7 +3,7 @@
# Copyright (C) 2016 Andi Albrecht, albrecht.andi@gmail.com
#
# This module is part of python-sqlparse and is released under
-# the BSD License: http://www.opensource.org/licenses/bsd-license.php
+# the BSD License: https://opensource.org/licenses/BSD-3-Clause
"""SQL Lexer"""
diff --git a/sqlparse/sql.py b/sqlparse/sql.py
index 06347a0..c0f8306 100644
--- a/sqlparse/sql.py
+++ b/sqlparse/sql.py
@@ -3,7 +3,7 @@
# Copyright (C) 2016 Andi Albrecht, albrecht.andi@gmail.com
#
# This module is part of python-sqlparse and is released under
-# the BSD License: http://www.opensource.org/licenses/bsd-license.php
+# the BSD License: https://opensource.org/licenses/BSD-3-Clause
"""This module contains classes representing syntactical elements of SQL."""
from __future__ import print_function
diff --git a/sqlparse/tokens.py b/sqlparse/tokens.py
index 1081f5a..6864f69 100644
--- a/sqlparse/tokens.py
+++ b/sqlparse/tokens.py
@@ -3,7 +3,7 @@
# Copyright (C) 2016 Andi Albrecht, albrecht.andi@gmail.com
#
# This module is part of python-sqlparse and is released under
-# the BSD License: http://www.opensource.org/licenses/bsd-license.php
+# the BSD License: https://opensource.org/licenses/BSD-3-Clause
#
# The Token implementation is based on pygment's token system written
# by Georg Brandl.
diff --git a/sqlparse/utils.py b/sqlparse/utils.py
index c3542b8..ee3e982 100644
--- a/sqlparse/utils.py
+++ b/sqlparse/utils.py
@@ -3,7 +3,7 @@
# Copyright (C) 2016 Andi Albrecht, albrecht.andi@gmail.com
#
# This module is part of python-sqlparse and is released under
-# the BSD License: http://www.opensource.org/licenses/bsd-license.php
+# the BSD License: https://opensource.org/licenses/BSD-3-Clause
import itertools
import re