Skip to content

Commit

Permalink
.BANCHO. Remove double prefix on bancho start schiavo message
Browse files Browse the repository at this point in the history
  • Loading branch information
xnyo committed Jan 6, 2017
1 parent 768913d commit fc3736e
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions pep.py
Original file line number Diff line number Diff line change
Expand Up @@ -253,7 +253,7 @@ def make_app():
ircPort = int(glob.conf.config["irc"]["port"])
except ValueError:
consoleHelper.printColored("[!] Invalid IRC port! Please check your config.ini and run the server again", bcolors.RED)
log.logMessage("**pep.py** IRC server started!", discord="bunker", of="info.txt", stdout=False)
log.logMessage("IRC server started!", discord="bunker", of="info.txt", stdout=False)
consoleHelper.printColored("> IRC server listening on 127.0.0.1:{}...".format(ircPort), bcolors.GREEN)
threading.Thread(target=lambda: ircserver.main(port=ircPort)).start()
else:
Expand All @@ -267,7 +267,7 @@ def make_app():
consoleHelper.printColored("[!] Invalid server port! Please check your config.ini and run the server again", bcolors.RED)

# Server start message and console output
log.logMessage("**pep.py** Server started!", discord="bunker", of="info.txt", stdout=False)
log.logMessage("Server started!", discord="bunker", of="info.txt", stdout=False)
consoleHelper.printColored("> Tornado listening for HTTP(s) clients on 127.0.0.1:{}...".format(serverPort), bcolors.GREEN)

# Connect to pubsub channels
Expand Down

0 comments on commit fc3736e

Please sign in to comment.