sethmlarson / virtualbox-python

Complete implementation of VirtualBox's COM API with a Pythonic interface.
https://pypi.org/project/virtualbox
Apache License 2.0
354 stars 75 forks source link

Fix python3 issues #126

Closed olssonsimon closed 5 years ago

olssonsimon commented 5 years ago

When using python 3.5.2 we found issues regarding the comparison of MachineStates so we added the __ge__ and __le__ methods.

Also, for some reason both message and msg where not available thus throwing an error.

sethmlarson commented 5 years ago

Thanks for this!