From 85fd5846f5914158df398c3187de86f320eca251 Mon Sep 17 00:00:00 2001 From: Simon Quigley Date: Sat, 30 Jun 2018 18:23:15 -0500 Subject: [PATCH] Consolidate variable names. --- lugito | 6 ++---- 1 file changed, 2 insertions(+), 4 deletions(-) diff --git a/lugito b/lugito index 17b08a9..a858e5f 100755 --- a/lugito +++ b/lugito @@ -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)