Skip to content

Commit fd12877

Browse files
committed
Repo name change (#473)
1 parent e309739 commit fd12877

File tree

2 files changed

+2
-2
lines changed

2 files changed

+2
-2
lines changed

README.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -12,7 +12,7 @@ This project provides a RESTful web API to query and manipulate a [Gramps](https
1212

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

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

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

gramps_webapi/api/search.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -57,7 +57,7 @@ def object_to_strings(obj) -> Tuple[str, str]:
5757
text_data_child_list = obj.get_text_data_child_list()
5858
if isinstance(obj, Place) and obj.name not in text_data_child_list:
5959
# fix necessary for Gramps 5.1
60-
# (see https://github.com/gramps-project/gramps-webapi/issues/245)
60+
# (see https://github.com/gramps-project/gramps-web-api/issues/245)
6161
text_data_child_list.append(obj.name)
6262
for child_obj in text_data_child_list:
6363
if hasattr(child_obj, "get_text_data_list"):

0 commit comments

Comments
 (0)