From 6bd2fed07b6492f97b18b33d841cfe8579182ea7 Mon Sep 17 00:00:00 2001 From: Gregory Ballantine Date: Thu, 20 Jul 2017 11:51:11 -0400 Subject: [PATCH] Fixed some variable calls in the FormulaRepo class --- lib/FormulaRepo.py | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/lib/FormulaRepo.py b/lib/FormulaRepo.py index 06ab432..dbdb76a 100644 --- a/lib/FormulaRepo.py +++ b/lib/FormulaRepo.py @@ -18,8 +18,8 @@ class FormulaRepo(): # check if the destination directory exists if not os.path.exists(self.repo_path): # clone git repo - print('Downloading ' + git_url + ' into ' + self.repo_path) - self.repo = Repo.clone_from(repo_url, self.repo_path) + print('Downloading ' + self.repo_url + ' into ' + self.repo_path) + self.repo = Repo.clone_from(self.repo_url, self.repo_path) else: # let the user know it's already downloaded so we'll update it later print(self.repo_path + ' already exists, so we\'re not downloading it again.')