Removed unneeded code

This commit is contained in:
Manuel Cortez 2018-06-06 08:23:07 -05:00
parent 77489cab1e
commit c2d81279fe
2 changed files with 0 additions and 16 deletions

View File

@ -1 +0,0 @@
# -*- coding: utf-8 -*-

View File

@ -1,15 +0,0 @@
# -*- coding: utf-8 -*-
import BaseHTTPServer, application
logged = False
class handler(BaseHTTPServer.BaseHTTPRequestHandler):
def do_GET(self):
global logged
self.send_response(200)
self.send_header("Content-type", "text/html")
self.end_headers()
logged = True
self.wfile.write("You have successfully logged into Pocket with" + application.name + ". "
"You can close this window now.")