From e022e4d3f0e0108c33522d5b1ec1834a6dba9635 Mon Sep 17 00:00:00 2001 From: Dimitri Papadopoulos <3234522+DimitriPapadopoulos@users.noreply.github.com> Date: Sat, 13 Sep 2025 14:46:09 +0200 Subject: [PATCH] Remove spurious space from error message --- tabulate/__init__.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/tabulate/__init__.py b/tabulate/__init__.py index e100c09..f407317 100644 --- a/tabulate/__init__.py +++ b/tabulate/__init__.py @@ -295,7 +295,7 @@ def make_header_line(is_header, colwidths, colaligns): else: raise ValueError( - " _asciidoc_row() requires two (colwidths, colaligns) " + "_asciidoc_row() requires two (colwidths, colaligns) " + "or three (cell_values, colwidths, colaligns) arguments) " )