mullender / python-ntlm

Automatically exported from code.google.com/p/python-ntlm
90 stars 42 forks source link

Python >= 3.9 - Replaced deprecated function #62

Open zi0Black opened 2 years ago

zi0Black commented 2 years ago

Since python 3.1 base64.decodestring is a deprecated alias of base64.decodebytes(s). In python 3.9, the function is no longer available and must be replaced.

Official documentation: