From 8418063453777de9155909bcd70d7b6dd3e134a4 Mon Sep 17 00:00:00 2001 From: TrackZero Date: Mon, 10 Feb 2025 15:11:52 -0600 Subject: [PATCH] correct typo in downloader.py --- flow/downloader.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/flow/downloader.py b/flow/downloader.py index 460d572..c39b518 100644 --- a/flow/downloader.py +++ b/flow/downloader.py @@ -15,7 +15,7 @@ def download_update_flows() -> None: with tempfile.TemporaryDirectory() as tmpdirname: temp_repo_path = Path(tmpdirname) / "Flows" - logger.info(f"{FLOWMSG}: Downloading and Upading Flows") + logger.info(f"{FLOWMSG}: Downloading and Updating Flows") result = subprocess.run( ['git', 'clone', FLOWS_DOWNLOAD_PATH, str(temp_repo_path)],