From 7010e5e99135e73ae802ed1bd815db24380dfab4 Mon Sep 17 00:00:00 2001 From: Claromes Date: Fri, 7 Feb 2025 23:59:54 -0300 Subject: [PATCH] update initial feedback msg --- app/app.py | 2 +- waybacktweets/_cli.py | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/app/app.py b/app/app.py index 0eb5634..1100daa 100644 --- a/app/app.py +++ b/app/app.py @@ -257,7 +257,7 @@ if (st.session_state.query and username) or st.session_state.count: try: with st.spinner( - f"Waybacking @{st.session_state.current_username}'s archived tweets" + f"Retrieving the archived tweets of @{st.session_state.current_username}..." ): wayback_tweets = wayback_tweets( st.session_state.current_username, diff --git a/waybacktweets/_cli.py b/waybacktweets/_cli.py index 4fc34b5..0b9aa9a 100644 --- a/waybacktweets/_cli.py +++ b/waybacktweets/_cli.py @@ -126,7 +126,7 @@ def main( matchtype, ) - print(f"Waybacking @{username}'s archived tweets...") + print(f"Retrieving the archived tweets of @{username}...") archived_tweets = api.get() if archived_tweets: -- 2.34.1