From d7f23933f1ce0caab2c0dab59b92f7c53573aae9 Mon Sep 17 00:00:00 2001 From: Friedrich Lindenberg Date: Sat, 11 Jan 2020 13:36:28 +0100 Subject: [PATCH] Fix doc error, fixes #297. --- dataset/table.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/dataset/table.py b/dataset/table.py index 844fb6d..7c0703e 100644 --- a/dataset/table.py +++ b/dataset/table.py @@ -91,7 +91,7 @@ class Table(object): def insert_ignore(self, row, keys, ensure=None, types=None): """Add a ``row`` dict into the table if the row does not exist. - If rows with matching ``keys`` exist they will be added to the table. + If rows with matching ``keys`` exist no change is made. Setting ``ensure`` results in automatically creating missing columns, i.e., keys of the row are not table columns.