From 25207831ccd2c31b9ba5282301d53d50006438f9 Mon Sep 17 00:00:00 2001 From: hsoft Date: Mon, 28 Sep 2009 16:19:27 +0000 Subject: [PATCH] dgse cocoa: added "/dev" to the list of folder to auto-ignore --HG-- extra : convert_revision : svn%3Ac306627e-7827-47d3-bdf0-9a457c9553a1/trunk%40154 --- base/py/app_se_cocoa.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/base/py/app_se_cocoa.py b/base/py/app_se_cocoa.py index e24b105c..22fc7bec 100644 --- a/base/py/app_se_cocoa.py +++ b/base/py/app_se_cocoa.py @@ -47,7 +47,7 @@ class DGDirectory(DirectoryBase): class Directories(DirectoriesBase): - ROOT_PATH_TO_EXCLUDE = map(Path, ['/Library', '/Volumes', '/System', '/bin', '/sbin', '/opt', '/private']) + ROOT_PATH_TO_EXCLUDE = map(Path, ['/Library', '/Volumes', '/System', '/bin', '/sbin', '/opt', '/private', '/dev']) HOME_PATH_TO_EXCLUDE = [Path('Library')] def __init__(self): DirectoriesBase.__init__(self)