From bad3f890f4dad3ab1148cc5a061676bd8464ee4b Mon Sep 17 00:00:00 2001 From: Claromes Date: Thu, 11 May 2023 03:11:26 -0300 Subject: [PATCH] Fix error msg --- app.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/app.py b/app.py index 0ba4a73..2550b17 100644 --- a/app.py +++ b/app.py @@ -22,7 +22,7 @@ def embed(tweet): def query_api(handle): if not handle: - st.error("Type Twitter's handle") + st.error("Type Twitter handle.") st.stop() url = 'https://web.archive.org/cdx/search/cdx?url=https://twitter.com/{}/status/*&output=json'.format(handle) -- 2.34.1