# HG changeset patch # User Marcin Kuzminski # Date 2018-10-01 11:27:14 # Node ID 2cd36dd34bda4f3eecf4abe983459e280f1fb6ad # Parent bd815778ddcb44efd1f594e0fcdb4d082af21688 diffs: we should use removed instead of deleted. diff --git a/rhodecode/lib/codeblocks.py b/rhodecode/lib/codeblocks.py --- a/rhodecode/lib/codeblocks.py +++ b/rhodecode/lib/codeblocks.py @@ -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: