Fixed unicode errors in account authorisation

This commit is contained in:
2017-05-25 11:59:24 +04:00
parent c4a06a7bc0
commit fb977a70c2
3 changed files with 2 additions and 3 deletions

View File

@@ -17,5 +17,5 @@ class handler(BaseHTTPServer.BaseHTTPRequestHandler):
params = parse_qs(urlparse(self.path).query)
global verifier
verifier = params.get('oauth_verifier', [None])[0]
self.wfile.write(_(u"You have successfully logged into Twitter with {0}. You can close this window now.").format(application.name))
self.wfile.write(u"You have successfully logged into Twitter with {0}. You can close this window now.".format(application.name))
self.finish()