Consolidate variable names.

This commit is contained in:
Simon Quigley 2018-06-30 18:23:15 -05:00
parent 0eb0144ad7
commit 85fd5846f5

6
lugito
View File

@ -12,17 +12,15 @@ from phabricator import Phabricator
from time import sleep
website = "https://phab.lubuntu.me"
phab = Phabricator(host=website+"/api/", token="API KEY")
app = Flask(__name__)
global username
username = "lugito"
server = "irc.freenode.net"
port = 6667
channel = "#lubuntu-devel"
app = Flask(__name__)
def connecttoirc():
global conn, username
conn = socket.socket(socket.AF_INET, socket.SOCK_STREAM)