<div dir="ltr">I wanted to drop this for review for everyone, hopefully this is the correct solution (go easy, I'm generally not a Python guy).<br><br>I noticed that on attempting to login with an AD account, I was seeing this error:<div>TypeError: replace() argument 2 must be str, not bytes|<br></div><div><br></div><div>This error stemmed from lib/helpers.py line 956.  My minor patch is:<br><br>956c956</div><div><               .replace('{email}', email_address.decode('utf-8')) \<br>---<br>>                .replace('{email}', email_address) \<br><br>HTH</div></div>