Skip to content

Commit 9669349

Browse files
committed
csv path
1 parent bdb15c3 commit 9669349

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

mariadb_pdf/setup/kb_urls.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -50,7 +50,7 @@ def from_dict(cls, row: dict[str, str]):
5050
)
5151

5252
def read_csv(num_rows: int, port: int) -> list[CsvItem]:
53-
string = get_url("kb_urls.csv", port)
53+
string = get_url("/srv/kb/mariadb-documentation/server/kb_urls.csv", port)
5454
assert string, f"Failed to connect to {port}"
5555
content = csv.DictReader(string.splitlines())
5656
rows = [row for row in content if row["Include"] not in ["", "0"]]

0 commit comments

Comments
 (0)