From b0efdedef6e53cc022c3f6034d71d190b1d2e07c Mon Sep 17 00:00:00 2001 From: rhigman <73792779+rhigman@users.noreply.github.com> Date: Wed, 2 Aug 2023 15:02:38 +0100 Subject: [PATCH] Fix error in constructing Full Text URL (stray 'www.') --- src/db.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/db.py b/src/db.py index fb3042e..176db51 100644 --- a/src/db.py +++ b/src/db.py @@ -151,7 +151,7 @@ def write_urls(self, chapter): 'https://www.openbookpublishers.com/books/10.11647/' '{book_doi}/chapters/10.11647/{chapter_doi}') full_text_url_root = ( - 'https://www.books.openbookpublishers.com/10.11647/' + 'https://books.openbookpublishers.com/10.11647/' '{chapter_doi}.pdf') username = getenv('THOTH_EMAIL')