Merge branch 'next-gen' of https://github.com/manuelcortez/TWBlue into next-gen

This commit is contained in:
2015-04-20 17:49:38 -05:00
16 changed files with 50 additions and 48 deletions

View File

@@ -1,5 +1,6 @@
# -*- coding: utf-8 -*-
import BaseHTTPServer
import application
from urlparse import urlparse, parse_qs
logged = False
@@ -16,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("You have successfully logged in to Twitter with TW Blue. "
self.wfile.write("You have successfully logged into Twitter with" + application.name + ". "
"You can close this window now.")