summaryrefslogtreecommitdiff
path: root/lib/sqlalchemy/exc.py
diff options
context:
space:
mode:
Diffstat (limited to 'lib/sqlalchemy/exc.py')
-rw-r--r--lib/sqlalchemy/exc.py6
1 files changed, 3 insertions, 3 deletions
diff --git a/lib/sqlalchemy/exc.py b/lib/sqlalchemy/exc.py
index 4501976e2..a24cf7ba4 100644
--- a/lib/sqlalchemy/exc.py
+++ b/lib/sqlalchemy/exc.py
@@ -3,7 +3,7 @@
# <see AUTHORS file>
#
# This module is part of SQLAlchemy and is released under
-# the MIT License: http://www.opensource.org/licenses/mit-license.php
+# the MIT License: https://www.opensource.org/licenses/mit-license.php
"""Exceptions used with SQLAlchemy.
@@ -36,7 +36,7 @@ class HasDescriptionCode(object):
else:
return (
"(Background on this error at: "
- "http://sqlalche.me/e/%s/%s)"
+ "https://sqlalche.me/e/%s/%s)"
% (
_version_token,
self.code,
@@ -684,7 +684,7 @@ class RemovedIn20Warning(SADeprecationWarning):
def __str__(self):
return (
super(RemovedIn20Warning, self).__str__()
- + " (Background on SQLAlchemy 2.0 at: http://sqlalche.me/e/b8d9)"
+ + " (Background on SQLAlchemy 2.0 at: https://sqlalche.me/e/b8d9)"
)