Commit 6f401885 authored by bescoto's avatar bescoto

Small modification to ListChangedSince


git-svn-id: http://svn.savannah.nongnu.org/svn/rdiff-backup@246 2b77aa54-bcbc-44c9-a7ec-4f6cf2b41109
parent 0ea1133d
......@@ -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)
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment