From 07097b4fd9cce461c6c9b8dc488bbb672084f4ee Mon Sep 17 00:00:00 2001 From: jhavl Date: Mon, 25 Jan 2021 14:07:52 +1000 Subject: [PATCH] Fixed list method --- roboticstoolbox/models/list.py | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/roboticstoolbox/models/list.py b/roboticstoolbox/models/list.py index 67668e618..b24b20d8e 100644 --- a/roboticstoolbox/models/list.py +++ b/roboticstoolbox/models/list.py @@ -43,7 +43,7 @@ def make_table(border): Column("DoF", colalign="<"), Column("config", colalign="<"), Column("keywords", headalign="^", colalign="<"), - border="thin" + border=border ) if mtype is not None: @@ -83,7 +83,7 @@ def make_table(border): try: make_table('thin') - except: + except UnicodeEncodeError: make_table('ascii')