tejado / pgoapi

Pokemon Go API lib
Other
1.4k stars 445 forks source link

AuthException when username and/or password is unicode string #82

Closed tstumm closed 8 years ago

tstumm commented 8 years ago

File pgoapi.py, line 132

For Python 2.* you should check if the instances are basestring Python 3 does not have basestring, so str is sufficient here.

There is a package that helps out with that. Removing the faulty if solves the problem too.

tejado commented 8 years ago

Should be fixed now.