From 1d7f12b370ff84468293c34b1e688819202b707b Mon Sep 17 00:00:00 2001 From: Andreas Zweili Date: Mon, 9 Nov 2020 12:32:32 +0100 Subject: [PATCH] update the path for the final files --- url2markdown/file.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/url2markdown/file.py b/url2markdown/file.py index 4303d42..01c7a3e 100644 --- a/url2markdown/file.py +++ b/url2markdown/file.py @@ -3,7 +3,7 @@ import markdownify def _build_path(title): - ressources_folder = "~/03_documents/ressources/" + ressources_folder = "~/03_documents/ressources/articles/" base_filename = str(title) short_path = os.path.join(ressources_folder, base_filename + ".md") return os.path.expanduser(short_path)