Skip to content

Commit a856e18

Browse files
committed
fixed table output
1 parent 442e41d commit a856e18

File tree

2 files changed

+2
-2
lines changed

2 files changed

+2
-2
lines changed

roboticstoolbox/models/list.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -77,7 +77,7 @@ def list(keywords=None, dof=None, mtype=None):
7777
config,
7878
', '.join(robot.keywords)
7979
)
80-
print(str(table).encode('cp1252', errors='replace').decode('cp1252'))
80+
print(str(table).encode('utf8', errors='replace').decode('utf8'))
8181

8282

8383
if __name__ == "__main__": # pragma nocover

roboticstoolbox/robot/ERobot.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -392,7 +392,7 @@ def urdf_to_ets_args(self, file_path, tld=None):
392392

393393
# get the path to the class that defines the robot
394394
classpath = sys.modules[self.__module__].__file__
395-
print("*** urdf_to_ets_args: ", classpath)
395+
# print("*** urdf_to_ets_args: ", classpath)
396396
# add on relative path to get to the URDF or xacro file
397397
base_path = PurePath(classpath).parent.parent / 'URDF' / 'xacro'
398398
file_path = base_path / PurePosixPath(file_path)

0 commit comments

Comments
 (0)