From eb0bbb8f3a31eb46eb97771cd9c1eccaf01be119 Mon Sep 17 00:00:00 2001 From: Hynek Cernoch Date: Thu, 17 Sep 2015 21:02:14 +0200 Subject: [PATCH] [1.8.x] Refs #17785 -- Made docstring for sqlite3's get_relations() consistent with other backends. Backport of 4b9d063da05faa112577a4e3cefd020850a25e9e from master --- django/db/backends/sqlite3/introspection.py | 5 ++--- 1 file changed, 2 insertions(+), 3 deletions(-) diff --git a/django/db/backends/sqlite3/introspection.py b/django/db/backends/sqlite3/introspection.py index c80248939d..26410152be 100644 --- a/django/db/backends/sqlite3/introspection.py +++ b/django/db/backends/sqlite3/introspection.py @@ -88,10 +88,9 @@ class DatabaseIntrospection(BaseDatabaseIntrospection): def get_relations(self, cursor, table_name): """ - Returns a dictionary of {field_index: (field_index_other_table, other_table)} - representing all relationships to the given table. Indexes are 0-based. + Return a dictionary of {field_name: (field_name_other_table, other_table)} + representing all relationships to the given table. """ - # Dictionary of relations to return relations = {}