Skip to content

Commit fe61011

Browse files
committed
Remove stray comma
1 parent 5c0574b commit fe61011

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

gramps_webapi/api/resources/metadata.py

+1-1
Original file line numberDiff line numberDiff line change
@@ -109,7 +109,7 @@ def get(self, args) -> Response:
109109
"server": {"multi_tree": is_multi_tree, "task_queue": has_task_queue},
110110
}
111111
if args["surnames"]:
112-
result["surnames"] = (db_handle.get_surname_list(),)
112+
result["surnames"] = db_handle.get_surname_list()
113113
data = db_handle.get_summary()
114114
db_version_key = GRAMPS_LOCALE.translation.sgettext("Database version")
115115
db_module_key = GRAMPS_LOCALE.translation.sgettext("Database module version")

0 commit comments

Comments
 (0)