revision f4d1a4852fbfe21fdd260767422e624e34875bc2
> 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)