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 also had to do a small fix in the init file to make it work with python 3. Line 64: for key, value in dic.iteritems():
has to be changed with: for key, value in dic.items():
script works in python 3 with just a small fix.
replace "if (isinstance(value, basestring)" in the init file with "if (isinstance(value, (str,bytes))"
The text was updated successfully, but these errors were encountered: