Only pass specified elements to expand_dependencies

This commit is contained in:
James Slagle 2013-08-08 09:32:32 -04:00
parent 68c34350f1
commit 79d9e9366c
1 changed files with 1 additions and 2 deletions

View File

@ -58,9 +58,8 @@ class ElementManager(object):
self.loaded_elements[element] = Element(os.path.join(path, element))
def load_dependencies(self):
import epdb; epdb.st()
all_elements = expand_dependencies(
self.loaded_elements.keys(), ':'.join(self.element_paths))
self.elements, ':'.join(self.element_paths))
self.elements = all_elements
def run_hook(self, hook):