From a93a1ba347be9744e8492dd8288f18b3831caa02 Mon Sep 17 00:00:00 2001 From: Ian Foote Date: Tue, 25 Jan 2022 19:14:24 +0000 Subject: [PATCH] Fixed broken link to cx_Oracle docs. --- django/db/backends/oracle/operations.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/django/db/backends/oracle/operations.py b/django/db/backends/oracle/operations.py index c357c75351..a10973b6b7 100644 --- a/django/db/backends/oracle/operations.py +++ b/django/db/backends/oracle/operations.py @@ -295,7 +295,7 @@ END; ) if sql) def last_executed_query(self, cursor, sql, params): - # https://cx-oracle.readthedocs.io/en/latest/cursor.html#Cursor.statement + # https://cx-oracle.readthedocs.io/en/latest/api_manual/cursor.html#Cursor.statement # The DB API definition does not define this attribute. statement = cursor.statement # Unlike Psycopg's `query` and MySQLdb`'s `_executed`, cx_Oracle's