From 4a0cb5a30643224dd6a9ebd91e53e257badaf7f9 Mon Sep 17 00:00:00 2001
From: Kim Alvefur <zash@zash.se>
Date: Sat, 6 Jun 2020 16:43:28 +0200
Subject: util.human.io: Fix right-alignment

---
 util/human/io.lua | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

(limited to 'util')

diff --git a/util/human/io.lua b/util/human/io.lua
index 7285c79f..a38ab5dd 100644
--- a/util/human/io.lua
+++ b/util/human/io.lua
@@ -134,7 +134,7 @@ local function new_table(col_specs, max_width)
 			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
-- 
cgit v1.2.3