Rename _prepend_with_links() -> _inject_links()

Signed-off-by: Chris Corbyn <chris@w3style.co.uk>
This commit is contained in:
d11wtq 2014-06-08 10:08:40 +00:00 committed by Chris Corbyn
parent ac541e208f
commit c0231bdb70
1 changed files with 2 additions and 2 deletions

View File

@ -113,7 +113,7 @@ class Project(object):
services = [s for s in self.services if s in unsorted]
if include_links:
services = reduce(self._prepend_with_links, services, [])
services = reduce(self._inject_links, services, [])
uniques = []
[uniques.append(s) for s in services if s not in uniques]
@ -158,7 +158,7 @@ class Project(object):
l.append(container)
return l
def _prepend_with_links(self, acc, service):
def _inject_links(self, acc, service):
linked_names = service.get_linked_names()
if len(linked_names) > 0: