Skip to content

Commit 07097b4

Browse files
committed
Fixed list method
1 parent 34727ba commit 07097b4

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

roboticstoolbox/models/list.py

+2-2
Original file line numberDiff line numberDiff line change
@@ -43,7 +43,7 @@ def make_table(border):
4343
Column("DoF", colalign="<"),
4444
Column("config", colalign="<"),
4545
Column("keywords", headalign="^", colalign="<"),
46-
border="thin"
46+
border=border
4747
)
4848

4949
if mtype is not None:
@@ -83,7 +83,7 @@ def make_table(border):
8383

8484
try:
8585
make_table('thin')
86-
except:
86+
except UnicodeEncodeError:
8787
make_table('ascii')
8888

8989

0 commit comments

Comments
 (0)