ansible: ERROR! Unexpected Exception: name 'reload' is not defined

raw

README.rst

ERROR! Unexpected Exception: name 'reload' is not defined

Reason was python3 not liking the reload(sys) command anymore. Replace it with imp.reload(sys) to make it work:

import sys
import imp
imp.reload(sys)
Anonymous Anonymous
owner

History