From b27134546b804cd569f5751c7baa0cd7f5a0ed17 Mon Sep 17 00:00:00 2001 From: Andreas Domanowski <andreas@domanowski.net> Date: Wed, 1 Mar 2023 16:55:05 +0100 Subject: [PATCH] Refer directly to https scheme when calling our instances --- md-import-export.py | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/md-import-export.py b/md-import-export.py index 8b9476d..fcadb26 100644 --- a/md-import-export.py +++ b/md-import-export.py @@ -7,8 +7,8 @@ if __name__ == "__main__": export_archive = "archive.zip" print_block_heading("Beginning export from CodiMD...") - export_from_codimd("http://md.inf.tu-dresden.de", get_sessionid("CodiMD", "connect.sid"), export_folder) + export_from_codimd("https://md.inf.tu-dresden.de", get_sessionid("CodiMD", "connect.sid"), export_folder) print_block_heading("Beginning import to HedgeDoc...") - import_into_hedgedoc("http://md.inf.tu-dresden.de/notes", get_sessionid("HedgeDoc", "connect.hedgeDoc.sid"), + import_into_hedgedoc("https://md.inf.tu-dresden.de/notes", get_sessionid("HedgeDoc", "connect.hedgeDoc.sid"), export_folder, export_archive) -- GitLab