From 45f4b711a3a40b40293e293f37b7caf49554d1cc Mon Sep 17 00:00:00 2001 From: Nick Hall Date: Mon, 7 Mar 2022 19:54:23 +0000 Subject: [PATCH] Fix bug preventing Gramps from starting. Small mistake in commit 22c1d79eaeb655584c48b6cdb452a1015ca656a3. --- gramps/gen/db/dummydb.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/gramps/gen/db/dummydb.py b/gramps/gen/db/dummydb.py index 34b1fb02b..e25250f22 100644 --- a/gramps/gen/db/dummydb.py +++ b/gramps/gen/db/dummydb.py @@ -166,7 +166,7 @@ def wrapper(method): LOG.debug('calling %s.%s()... from file %s, line %s in %s', class_name, func_name, c_code.co_filename, c_frame.f_lineno, c_code.co_name) - return method(*args, **keywargs) + return method(*args, **keywargs) return wrapped