Skip to content

Commit

Permalink
Repo name change (#473)
Browse files Browse the repository at this point in the history
  • Loading branch information
DavidMStraub committed Jan 19, 2024
1 parent e309739 commit fd12877
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -12,7 +12,7 @@ This project provides a RESTful web API to query and manipulate a [Gramps](https

The documentation of the current state of the API can be browsed with Swagger:

[Gramps API docs](https://gramps-project.github.io/gramps-webapi/)
[Gramps API docs](https://gramps-project.github.io/gramps-web-api/)

The project is still under development, so API changes should be expected.

Expand Down
2 changes: 1 addition & 1 deletion gramps_webapi/api/search.py
Original file line number Diff line number Diff line change
Expand Up @@ -57,7 +57,7 @@ def object_to_strings(obj) -> Tuple[str, str]:
text_data_child_list = obj.get_text_data_child_list()
if isinstance(obj, Place) and obj.name not in text_data_child_list:
# fix necessary for Gramps 5.1
# (see https://github.com/gramps-project/gramps-webapi/issues/245)
# (see https://github.com/gramps-project/gramps-web-api/issues/245)
text_data_child_list.append(obj.name)
for child_obj in text_data_child_list:
if hasattr(child_obj, "get_text_data_list"):
Expand Down

0 comments on commit fd12877

Please sign in to comment.