From 5a28d499a80df99cb193be37c79788337f926476 Mon Sep 17 00:00:00 2001 From: Paul Gauthier Date: Mon, 12 Aug 2024 20:41:09 -0700 Subject: [PATCH] fix: Update the path for the Mixpanel UUID file --- aider/analytics.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/aider/analytics.py b/aider/analytics.py index d19bc0ceb..4e535f62b 100644 --- a/aider/analytics.py +++ b/aider/analytics.py @@ -31,7 +31,7 @@ class Analytics: } def get_or_create_uuid(self): - uuid_file = Path.home() / ".aider" / "caches" / "mixpanel-uuid.json" + uuid_file = Path.home() / ".aider" / "caches" / "mixpanel.json" uuid_file.parent.mkdir(parents=True, exist_ok=True) if uuid_file.exists():