Commit fb63ac19 authored by Łukasz Nowak's avatar Łukasz Nowak

Separate words with -, not _.

parent dbde55f5
......@@ -65,7 +65,7 @@ class Recipe(GenericBaseRecipe):
self.bt5_repository_list = []
append = self.bt5_repository_list.append
for repository in self.options.get('bt5_repository_list', '').split():
for repository in self.options.get('bt5-repository-list', '').split():
repository = repository.strip()
if not repository:
continue
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment