Skip to content

Commit 4430c5c

Browse files
committed
Correct license link (fixes andialbrecht#288).
1 parent 358ad4b commit 4430c5c

26 files changed

+26
-26
lines changed

docs/source/index.rst

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -11,7 +11,7 @@ It provides support for parsing, splitting and formatting SQL statements.
1111

1212
The module is compatible with Python 2.7 and Python 3 (>= 3.3)
1313
and released under the terms of the `New BSD license
14-
<http://www.opensource.org/licenses/bsd-license.php>`_.
14+
<https://opensource.org/licenses/BSD-3-Clause>`_.
1515

1616
Visit the project page at https://github.com/andialbrecht/sqlparse for
1717
further information about this project.

examples/column_defs_lowlevel.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@
44
# Copyright (C) 2016 Andi Albrecht, [email protected]
55
#
66
# This example is part of python-sqlparse and is released under
7-
# the BSD License: http://www.opensource.org/licenses/bsd-license.php
7+
# the BSD License: https://opensource.org/licenses/BSD-3-Clause
88
#
99
# Example for retrieving column definitions from a CREATE statement
1010
# using low-level functions.

examples/extract_table_names.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@
44
# Copyright (C) 2016 Andi Albrecht, [email protected]
55
#
66
# This example is part of python-sqlparse and is released under
7-
# the BSD License: http://www.opensource.org/licenses/bsd-license.php
7+
# the BSD License: https://opensource.org/licenses/BSD-3-Clause
88
#
99
# This example illustrates how to extract table names from nested
1010
# SELECT statements.

setup.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@
44
# Copyright (C) 2016 Andi Albrecht, [email protected]
55
#
66
# This setup script is part of python-sqlparse and is released under
7-
# the BSD License: http://www.opensource.org/licenses/bsd-license.php
7+
# the BSD License: https://opensource.org/licenses/BSD-3-Clause
88

99
import re
1010

sqlparse/__init__.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@
33
# Copyright (C) 2016 Andi Albrecht, [email protected]
44
#
55
# This module is part of python-sqlparse and is released under
6-
# the BSD License: http://www.opensource.org/licenses/bsd-license.php
6+
# the BSD License: https://opensource.org/licenses/BSD-3-Clause
77

88
"""Parse SQL statements."""
99

sqlparse/__main__.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@
44
# Copyright (C) 2016 Andi Albrecht, [email protected]
55
#
66
# This module is part of python-sqlparse and is released under
7-
# the BSD License: http://www.opensource.org/licenses/bsd-license.php
7+
# the BSD License: https://opensource.org/licenses/BSD-3-Clause
88

99
"""Entrypoint module for `python -m sqlparse`.
1010

sqlparse/cli.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@
44
# Copyright (C) 2016 Andi Albrecht, [email protected]
55
#
66
# This module is part of python-sqlparse and is released under
7-
# the BSD License: http://www.opensource.org/licenses/bsd-license.php
7+
# the BSD License: https://opensource.org/licenses/BSD-3-Clause
88

99
"""Module that contains the command line app.
1010

sqlparse/compat.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@
33
# Copyright (C) 2016 Andi Albrecht, [email protected]
44
#
55
# This module is part of python-sqlparse and is released under
6-
# the BSD License: http://www.opensource.org/licenses/bsd-license.php
6+
# the BSD License: https://opensource.org/licenses/BSD-3-Clause
77

88
"""Python 2/3 compatibility.
99

sqlparse/engine/__init__.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@
33
# Copyright (C) 2016 Andi Albrecht, [email protected]
44
#
55
# This module is part of python-sqlparse and is released under
6-
# the BSD License: http://www.opensource.org/licenses/bsd-license.php
6+
# the BSD License: https://opensource.org/licenses/BSD-3-Clause
77

88
from sqlparse.engine import grouping
99
from sqlparse.engine.filter_stack import FilterStack

sqlparse/engine/filter_stack.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@
33
# Copyright (C) 2016 Andi Albrecht, [email protected]
44
#
55
# This module is part of python-sqlparse and is released under
6-
# the BSD License: http://www.opensource.org/licenses/bsd-license.php
6+
# the BSD License: https://opensource.org/licenses/BSD-3-Clause
77

88
"""filter"""
99

0 commit comments

Comments
 (0)