From 20f4ab708c9c3b65fcd6db19929248544e83942f Mon Sep 17 00:00:00 2001 From: Andrew Hamilton Date: Wed, 15 Dec 2021 08:54:47 +1000 Subject: [PATCH] Shorten warning message. --- eris/eris/__main__.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/eris/eris/__main__.py b/eris/eris/__main__.py index 10cbbce..1b0d11a 100755 --- a/eris/eris/__main__.py +++ b/eris/eris/__main__.py @@ -1093,7 +1093,7 @@ def manage_cache(root_path): with open(checksum_path, "r") as checksum_file: cache_checksum = checksum_file.read() if source_checksum() != cache_checksum: - print("Eris has been changed, so clearing the cache and recalculating all results…") + print("Eris has changed, recalculating all results…") shutil.rmtree(cache_path) if not os.path.exists(cache_path): os.mkdir(cache_path)