summaryrefslogtreecommitdiff
path: root/rdiff-backup
diff options
context:
space:
mode:
authorbescoto <bescoto@2b77aa54-bcbc-44c9-a7ec-4f6cf2b41109>2002-12-14 01:13:57 +0000
committerbescoto <bescoto@2b77aa54-bcbc-44c9-a7ec-4f6cf2b41109>2002-12-14 01:13:57 +0000
commit536a293b67ad8c1466cf4cd3c63fbf84406cf552 (patch)
tree66db81dc4ecf6b370ad9ea00aee0c0db9e88081d /rdiff-backup
parentb7d3685a496a24c8d9ec8467f76aba5b9cecd591 (diff)
downloadrdiff-backup-536a293b67ad8c1466cf4cd3c63fbf84406cf552.tar.gz
Small modification to ListChangedSince
git-svn-id: http://svn.savannah.nongnu.org/svn/rdiff-backup/trunk@246 2b77aa54-bcbc-44c9-a7ec-4f6cf2b41109
Diffstat (limited to 'rdiff-backup')
-rw-r--r--rdiff-backup/rdiff_backup/Main.py4
1 files changed, 2 insertions, 2 deletions
diff --git a/rdiff-backup/rdiff_backup/Main.py b/rdiff-backup/rdiff_backup/Main.py
index c3891a9..67141e1 100644
--- a/rdiff-backup/rdiff_backup/Main.py
+++ b/rdiff-backup/rdiff_backup/Main.py
@@ -570,8 +570,8 @@ def ListChangedSince(rp):
last_inc_type = incList[-1].getinctype() # examine earliest change
if last_inc_type == 'snapshot': return "misc change"
elif last_inc_type == 'missing': return "new file"
- elif last_inc_type == 'diff' or last_inc_type == 'dir':
- return "modified"
+ elif last_inc_type == 'diff': return "modified"
+ elif last_inc_type == 'dir': return "dir change"
else: return "Unknown!"
inc_rpath = datadir.append_path('increments', index)