diff options
author | Siddharth Ravikumar <sravik@bgsu.edu> | 2015-08-27 00:09:37 -0400 |
---|---|---|
committer | Siddharth Ravikumar <sravik@bgsu.edu> | 2015-08-27 00:09:37 -0400 |
commit | a1cdbe03cec3c658ebcfbbdc987a9419c8662a64 (patch) | |
tree | 3b390e61d905bd1fad7f3804cec4bbd13af8b666 | |
parent | 8fb44d680544817f20f0000e38c3651a5caa6cb7 (diff) |
fixed dropbox specific issue in NodeDirMonitor.housekeep method.
modified: combox/events.py
-rw-r--r-- | combox/events.py | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/combox/events.py b/combox/events.py index d89acb6..e0b558e 100644 --- a/combox/events.py +++ b/combox/events.py @@ -263,7 +263,8 @@ class NodeDirMonitor(LoggingEventHandler): for f in files: shard = path.join(root, f) - if not self.shardp(shard): + if (not self.shardp(shard) and + '.dropbox.cache' in shard): continue file_cb_path = cb_path(shard, self.config) |