From b82c6edb0bfcd7af43b0ba7745a7e517a248af64 Mon Sep 17 00:00:00 2001 From: Christopher Oak <33976926+chroakPRO@users.noreply.github.com> Date: Wed, 14 Feb 2024 13:35:40 +0100 Subject: [PATCH] Update utils.py --- client/fabric/utils.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/client/fabric/utils.py b/client/fabric/utils.py index 9f0e522..630b9e2 100644 --- a/client/fabric/utils.py +++ b/client/fabric/utils.py @@ -207,7 +207,7 @@ class Update: OSError: If there is an issue creating the pattern_directory. """ - self.root_api_url = "https://api.github.com/repos/danielmiessler/fabric/contents/patterns?ref=main" + self.root_api_url = "https://api.github.com/repos/chroakPRO/fabric/contents/patterns?ref=main" self.config_directory = os.path.expanduser("~/.config/fabric") self.pattern_directory = os.path.join(self.config_directory, "patterns") os.makedirs(self.pattern_directory, exist_ok=True)