From ba5f5a9b7b4d1a6b2ba03091f11b42c7b44c4ac6 Mon Sep 17 00:00:00 2001 From: Andreas Zweili Date: Wed, 11 Nov 2020 19:51:55 +0100 Subject: [PATCH] update path again --- url2markdown/file.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/url2markdown/file.py b/url2markdown/file.py index b50309f..1047c69 100644 --- a/url2markdown/file.py +++ b/url2markdown/file.py @@ -12,7 +12,7 @@ def _clean_title(raw_title): def _build_path(title): - ressources_folder = "~/03_documents/resources/articles/" + ressources_folder = "~/03_documents/obsidian/articles/" base_filename = _clean_title(title) short_path = os.path.join(ressources_folder, base_filename + ".md") return os.path.expanduser(short_path)