From c5aeb187d13ad857d583ebd979c761b850e3919d Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Louis=20V=C3=A9zina?= <5130500+morpheus65535@users.noreply.github.com> Date: Mon, 28 Oct 2019 06:45:42 -0400 Subject: [PATCH] WIP --- bazarr/database.py | 5 +++++ 1 file changed, 5 insertions(+) diff --git a/bazarr/database.py b/bazarr/database.py index 2dfce96e7..685638f5f 100644 --- a/bazarr/database.py +++ b/bazarr/database.py @@ -41,6 +41,11 @@ class SqliteDictConverter: def convert(self, values_dict): if type(values_dict) is dict: + self.keys_insert = tuple() + self.keys_update = tuple() + self.values = tuple() + self.question_marks = tuple() + temp_keys = list() temp_values = list() for item in values_dict.items():