remove get_missing from LoraxRequiredCommands

This commit is contained in:
Will Woods 2011-06-27 12:57:50 -04:00
parent c0cf2095e4
commit f8da53ac51
1 changed files with 0 additions and 12 deletions

View File

@ -57,16 +57,4 @@ class LoraxRequiredCommands(dict):
def __getattr__(self, attr):
return self[attr]
def get_missing(self):
missing = []
for cmd in self.values():
found = [joinpaths(path, cmd) for path in self.__path
if os.path.exists(joinpaths(path, cmd))]
if not found:
missing.append(cmd)
return missing
FS_OVERHEAD = 512