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)