Closed blakem17 closed 6 years ago
Thanks for reporting this issue! I'll take a look :) Could you try installing the latest pyvbox and see if it reproduces there as well?
So this recursion error is unfortunate because the error is trying to print out of the name of the machine within the error but the thing is the machine doesn't exist. To get a machine use the following method:
vbox = virtualbox.VirtualBox()
machine = vbox.find_machine('NAME OF MACHINE')
machine.clone('DB01')
Does this work for you?
Awesome Thank you very much. Issue is fixed. Please Feel free to resolve this issue
I'm glad I could help you out! :)
ENVIRONMENT
master
branch?SUMMARY
RecursionError: maximum recursion depth exceeded When trying virtualbox.library_ext.IMachine.clone()
STEPS TO REPRODUCE
EXPECTED RESULTS
Expected to have the machine cloned
ACTUAL RESULTS
(Edited to snip the traceback and make the code sections readable -@SethMichaelLarson)