Fixed unicode errors in account authorisation

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

View File

@ -70,7 +70,7 @@ class Session(object):
for i in data:
if ignore_older and last_id != None:
if i["id"] < last_id:
log.error("Ignoring an older tweet... Last id: {0}, tweet id: {1}".format(last_id, tweet["id"]))
log.error("Ignoring an older tweet... Last id: {0}, tweet id: {1}".format(last_id, i["id"]))
continue
if utils.find_item(i["id"], self.db[name]) == None and utils.is_allowed(i, self.settings["twitter"]["ignored_clients"]) == True:
try: i = self.check_quoted_status(i)

View File

@ -96,7 +96,6 @@ class sessionManagerController(object):
self.sessions.append(location)
self.view.add_new_session_to_list()
s.settings.write()
config.write()
# except:
# log.exception("Error authorising the session")
# self.view.show_unauthorised_error()

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()