You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
(I don't want to make a pull request, because the changes break python2 compatibility... a new python3 branch would be better)
Had to change only 3 things to make it work in python3:
in "init.py":
from .ignite import *
in "ignite.py":
params.iteritems() must be changed for iter(params.items())
urllib.urlencode changed for urllib.parse.urlencode
(I don't want to make a pull request, because the changes break python2 compatibility... a new python3 branch would be better)
Had to change only 3 things to make it work in python3:
in "init.py":
from .ignite import *
in "ignite.py":
params.iteritems() must be changed for iter(params.items())
urllib.urlencode changed for urllib.parse.urlencode
and now it works in python3
Links to my fork:
yumok@b655e86
yumok@85384e8
The text was updated successfully, but these errors were encountered: