Skip to content

Commit

Permalink
Fixed list method
Browse files Browse the repository at this point in the history
  • Loading branch information
jhavl committed Jan 25, 2021
1 parent 34727ba commit 07097b4
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions roboticstoolbox/models/list.py
Original file line number Diff line number Diff line change
Expand Up @@ -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:
Expand Down Expand Up @@ -83,7 +83,7 @@ def make_table(border):

try:
make_table('thin')
except:
except UnicodeEncodeError:
make_table('ascii')


Expand Down

0 comments on commit 07097b4

Please sign in to comment.