found another typo while testing

This commit is contained in:
Martin A. Brown 2016-02-12 23:49:04 -08:00
parent 39ca112e40
commit fe507461e8
1 changed files with 1 additions and 1 deletions

View File

@ -24,7 +24,7 @@ class Sources(object):
def validateDirs(self):
results = [os.path.exists(x) for x in self.sourcedirs]
if not all(results):
for result, sdir in zip(results, self.sourcedir):
for result, sdir in zip(results, self.sourcedirs):
logger.critical("[Errno 2] No such file or directory: " + sdir)
raise OSError("[Errno 2] No such file or directory: " + sdir)