Fix bug preventing Gramps from starting.

Small mistake in commit 22c1d79eae.
This commit is contained in:
Nick Hall 2022-03-07 19:54:23 +00:00
parent de866a7edc
commit 45f4b711a3

View File

@ -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