From 94744fb55f7162b32f9b202c3c49b22e1985272d Mon Sep 17 00:00:00 2001 From: Marty Oehme Date: Thu, 23 Feb 2023 19:32:32 +0100 Subject: [PATCH] Only strip query title --- papis-marvin | 3 +-- 1 file changed, 1 insertion(+), 2 deletions(-) diff --git a/papis-marvin b/papis-marvin index 8f2e6f9..77bdc33 100755 --- a/papis-marvin +++ b/papis-marvin @@ -42,8 +42,7 @@ def get_all_annotations(db, csv) -> Dict: for row in csv: # switch to next book if not is_same_book(row["Title"]): - title_stripped = strip_string(row["Title"]) - doc = get_document(db, row["Author"], title_stripped) + doc = get_document(db, row["Author"], row["Title"]) if not doc: continue note_file = get_notefile(db, doc)