diffs: we should use removed instead of deleted.

This commit is contained in:
Marcin Kuzminski 2018-10-01 13:27:14 +02:00
parent 4da7905b37
commit 04f5394041

View file

@ -526,7 +526,7 @@ class DiffSet(object):
actions = []
for op_id, op_text in filediff.patch['stats']['ops'].items():
if op_id == DEL_FILENODE:
actions.append(u'file was deleted')
actions.append(u'file was removed')
elif op_id == BIN_FILENODE:
actions.append(u'binary diff hidden')
else: