summaryrefslogtreecommitdiff
path: root/rdiff-backup/rdiff_backup/selection.py
diff options
context:
space:
mode:
authorbescoto <bescoto@2b77aa54-bcbc-44c9-a7ec-4f6cf2b41109>2005-08-09 06:05:17 +0000
committerbescoto <bescoto@2b77aa54-bcbc-44c9-a7ec-4f6cf2b41109>2005-08-09 06:05:17 +0000
commit5606c8f93acbd8daeb97d2ea702b2f9096a067a2 (patch)
treeb9ffd5095ae40142eef3896a58a0df2397111807 /rdiff-backup/rdiff_backup/selection.py
parent2c3750ff27e9c4e145a489c4fe60b27afa8b90a6 (diff)
downloadrdiff-backup-r0-12.tar.gz
Backport for selection bugfix/addition reported by Daniel Richard G.r0-12
git-svn-id: http://svn.savannah.nongnu.org/svn/rdiff-backup/branches/r0-12@603 2b77aa54-bcbc-44c9-a7ec-4f6cf2b41109
Diffstat (limited to 'rdiff-backup/rdiff_backup/selection.py')
-rw-r--r--rdiff-backup/rdiff_backup/selection.py3
1 files changed, 2 insertions, 1 deletions
diff --git a/rdiff-backup/rdiff_backup/selection.py b/rdiff-backup/rdiff_backup/selection.py
index 30bc68f..062ea26 100644
--- a/rdiff-backup/rdiff_backup/selection.py
+++ b/rdiff-backup/rdiff_backup/selection.py
@@ -211,7 +211,8 @@ class Select:
"""Run through the selection functions and return dominant val 0/1/2"""
for sf in self.selection_functions:
result = sf(rp)
- if result is not None: return result
+ if result == 1 or result == 0 or (result == 2 and rp.isdir()):
+ return result
return 1
def ParseArgs(self, argtuples, filelists):