mirror of
https://github.com/MCV-Software/TWBlue.git
synced 2024-11-22 19:28:09 -06:00
Fixed unicode errors in account authorisation
This commit is contained in:
parent
c4a06a7bc0
commit
fb977a70c2
@ -70,7 +70,7 @@ class Session(object):
|
|||||||
for i in data:
|
for i in data:
|
||||||
if ignore_older and last_id != None:
|
if ignore_older and last_id != None:
|
||||||
if i["id"] < last_id:
|
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
|
continue
|
||||||
if utils.find_item(i["id"], self.db[name]) == None and utils.is_allowed(i, self.settings["twitter"]["ignored_clients"]) == True:
|
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)
|
try: i = self.check_quoted_status(i)
|
||||||
|
@ -96,7 +96,6 @@ class sessionManagerController(object):
|
|||||||
self.sessions.append(location)
|
self.sessions.append(location)
|
||||||
self.view.add_new_session_to_list()
|
self.view.add_new_session_to_list()
|
||||||
s.settings.write()
|
s.settings.write()
|
||||||
config.write()
|
|
||||||
# except:
|
# except:
|
||||||
# log.exception("Error authorising the session")
|
# log.exception("Error authorising the session")
|
||||||
# self.view.show_unauthorised_error()
|
# self.view.show_unauthorised_error()
|
||||||
|
@ -17,5 +17,5 @@ class handler(BaseHTTPServer.BaseHTTPRequestHandler):
|
|||||||
params = parse_qs(urlparse(self.path).query)
|
params = parse_qs(urlparse(self.path).query)
|
||||||
global verifier
|
global verifier
|
||||||
verifier = params.get('oauth_verifier', [None])[0]
|
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()
|
self.finish()
|
||||||
|
Loading…
Reference in New Issue
Block a user