util/human/io.lua
changeset 10921 1eb83bc6f706
parent 10915 9dc34e1556d9
child 11896 e712133b4de1
--- a/util/human/io.lua	Sat Jun 06 00:54:28 2020 +0200
+++ b/util/human/io.lua	Sat Jun 06 16:43:28 2020 +0200
@@ -134,7 +134,7 @@
 			local v = (not titles and column.mapper or tostring)(row[not titles and column.key or i] or "", row);
 			if #v < width then
 				if column.align == "right" then
-					v = padleft(v, width-1).." ";
+					v = padleft(v, width);
 				else
 					v = padright(v, width);
 				end