From fe507461e89b49bd0b343348e1c0f3427fb7b045 Mon Sep 17 00:00:00 2001 From: "Martin A. Brown" Date: Fri, 12 Feb 2016 23:49:04 -0800 Subject: [PATCH] found another typo while testing --- tldp/sources.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/tldp/sources.py b/tldp/sources.py index ee961c3..f0a1621 100644 --- a/tldp/sources.py +++ b/tldp/sources.py @@ -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)