Comment 1 for bug 1416298

Revision history for this message
Erhan Ekici (erhan-ekici) wrote :

Can you change ipmi admin password from numeric value (12345678) to a string and try again?

"expected a character buffer object" error message is a python error and if it works with new password (string not a numeric value), it means that we may need "password" casting to string and then pass to write()?
---- ipmitool.py ---
f.write(password) -> f.write(str(password))
----