summaryrefslogtreecommitdiff
path: root/django/db
diff options
context:
space:
mode:
authorVille Skyttä <ville.skytta@iki.fi>2016-06-16 04:20:23 +0300
committerTim Graham <timograham@gmail.com>2016-06-15 21:20:23 -0400
commit96f97691ad5e1483263cea3bb4e4021b4c8dcc41 (patch)
tree78f847d6c275046a14bcf341d9673972d404abd8 /django/db
parentdb613f4f1250971942f766dcf97c22234a3aa14e (diff)
Fixed broken links in docs and comments.
Diffstat (limited to 'django/db')
-rw-r--r--django/db/backends/oracle/operations.py2
1 files changed, 1 insertions, 1 deletions
diff --git a/django/db/backends/oracle/operations.py b/django/db/backends/oracle/operations.py
index aa00f93f92..10426928ce 100644
--- a/django/db/backends/oracle/operations.py
+++ b/django/db/backends/oracle/operations.py
@@ -242,7 +242,7 @@ WHEN (new.%(col_name)s IS NULL)
return "%s"
def last_executed_query(self, cursor, sql, params):
- # http://cx-oracle.sourceforge.net/html/cursor.html#Cursor.statement
+ # https://cx-oracle.readthedocs.io/en/latest/cursor.html#Cursor.statement
# The DB API definition does not define this attribute.
statement = cursor.statement
if statement and six.PY2 and not isinstance(statement, unicode): # NOQA: unicode undefined on PY3