From 9667a17e91d9d611250a420fe35ed9989b6583ab Mon Sep 17 00:00:00 2001
From: Andreas Domanowski <andreas@domanowski.net>
Date: Wed, 1 Mar 2023 15:57:19 +0100
Subject: [PATCH] Add info statement to hang on while fetching documents

---
 export_md/codimd_export.py | 1 +
 1 file changed, 1 insertion(+)

diff --git a/export_md/codimd_export.py b/export_md/codimd_export.py
index 262becd..62ae480 100755
--- a/export_md/codimd_export.py
+++ b/export_md/codimd_export.py
@@ -44,6 +44,7 @@ def export_from_codimd(instance_url, session_id, export_to):
     target_dir = prepare_target_dir(export_to)
     num_ok = num_fail = 0
     print_block_heading(f"Accessing history and trying to fetch each document")
+    print("Hold on, this may take a while...")
     for row in data["history"]:
         document_id = row["id"]
         document_url = f"{instance_url}/{quote(document_id)}"
-- 
GitLab