From a9082be0a03c11b46f6974b1b9476db9914055be Mon Sep 17 00:00:00 2001 From: Siddharth Ravikumar Date: Thu, 27 Aug 2015 00:14:18 -0400 Subject: combox/events.py: fixed a logical mistake in the last commit. --- combox/events.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/combox/events.py b/combox/events.py index e0b558e..42cd617 100644 --- a/combox/events.py +++ b/combox/events.py @@ -263,7 +263,7 @@ class NodeDirMonitor(LoggingEventHandler): for f in files: shard = path.join(root, f) - if (not self.shardp(shard) and + if (not self.shardp(shard) or '.dropbox.cache' in shard): continue -- cgit v1.2.3