From f5d39b3b57b97a84ca0013897f6a1df93ad21c4a Mon Sep 17 00:00:00 2001 From: Gregory Ballantine Date: Tue, 25 Jul 2017 16:38:15 -0400 Subject: [PATCH] Removed redundant appending of -formula to the default formula path --- lib/Formula.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/lib/Formula.py b/lib/Formula.py index 16e8b9c..ea3e9cc 100644 --- a/lib/Formula.py +++ b/lib/Formula.py @@ -31,7 +31,7 @@ class Formula(): if 'url' in self.formula_def: git_url = str(self.formula_def['url']) else: - git_url = str(self.formulas_url) + str(self.formula_def['name']) + '-formula' + git_url = str(self.formulas_url) + str(self.formula_def['name']) # put together the local local_path = str(self.formulas_dir) + '/' + str(self.formula_def['name']) elif isinstance(self.formula_def, str):