diff options
author | Siddharth Ravikumar <sravik@bgsu.edu> | 2015-08-27 00:14:18 -0400 |
---|---|---|
committer | Siddharth Ravikumar <sravik@bgsu.edu> | 2015-08-27 00:14:18 -0400 |
commit | a9082be0a03c11b46f6974b1b9476db9914055be (patch) | |
tree | 4cd36546cf375a1b28fb874b643e3f9d060d8908 | |
parent | a1cdbe03cec3c658ebcfbbdc987a9419c8662a64 (diff) |
combox/events.py: fixed a logical mistake in the last commit.
-rw-r--r-- | combox/events.py | 2 |
1 files changed, 1 insertions, 1 deletions
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 |