diff options
author | Vsevolod Stakhov <vsevolod@highsecure.ru> | 2015-12-16 22:02:24 +0000 |
---|---|---|
committer | Vsevolod Stakhov <vsevolod@highsecure.ru> | 2015-12-16 22:02:24 +0000 |
commit | 2cc1274bf2d36d0ace6c31f08fe5c29719e24391 (patch) | |
tree | e90dd394b9b333252493bc852046db3aaf9fae0d | |
parent | 18ee02fee1a51478f4aee621a8297442540f8529 (diff) | |
download | rspamd-2cc1274bf2d36d0ace6c31f08fe5c29719e24391.tar.gz rspamd-2cc1274bf2d36d0ace6c31f08fe5c29719e24391.zip |
Fix misprint
-rw-r--r-- | src/rspamadm/fuzzy_stat.lua | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/rspamadm/fuzzy_stat.lua b/src/rspamadm/fuzzy_stat.lua index 32435ab96..e4e645af8 100644 --- a/src/rspamadm/fuzzy_stat.lua +++ b/src/rspamadm/fuzzy_stat.lua @@ -31,7 +31,7 @@ local function print_stat(st, tabs) print(string.format('%sAdded: %10d', tabs, tonumber(st['added']))) end if st['deleted'] then - print(string.format('%sAdded: %10d', tabs, tonumber(st['deleted']))) + print(string.format('%sDeleted: %8d', tabs, tonumber(st['deleted']))) end end |