Fix aruco_gen utility for Python 3

This commit is contained in:
Oleg Kalachev
2021-07-29 05:58:56 +03:00
parent d0666ca9d7
commit ef7faa126a

View File

@@ -41,4 +41,4 @@ def save_world(world, file):
'''
Save the world to file-like object
'''
return world.write(file)
return world.write(file, encoding='unicode')