From 2b13e1cc46b86b15a1522b225cde77e3e946f4cf Mon Sep 17 00:00:00 2001 From: Ian Jackson Date: Sun, 9 Apr 2017 23:44:24 +0100 Subject: [PATCH] config dir reading fix Signed-off-by: Ian Jackson --- hippotatlib/__init__.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/hippotatlib/__init__.py b/hippotatlib/__init__.py index 64cc6e5..4c7dd90 100644 --- a/hippotatlib/__init__.py +++ b/hippotatlib/__init__.py @@ -546,7 +546,7 @@ def common_startup(process_cfg): # is a directory log('directory') re = regexp.compile('[^-A-Za-z0-9_]') - for f in os.listdir(cdir): + for f in os.listdir(pathname): if re.search(f): continue subpath = pathname + '/' + f try: -- 2.11.0