Bump ident up to pcc31

This commit is contained in:
Kiooeht 2011-07-13 00:27:32 -07:00
parent a531a34ce8
commit 1416032942

2
irc.py
View file

@ -23,7 +23,7 @@ class PesterIRC(QtCore.QThread):
def IRCConnect(self):
server = self.config.server()
port = self.config.port()
self.cli = IRCClient(PesterHandler, host=server, port=int(port), nick=self.mainwindow.profile().handle, real_name='pcc30', blocking=True, timeout=15)
self.cli = IRCClient(PesterHandler, host=server, port=int(port), nick=self.mainwindow.profile().handle, real_name='pcc31', blocking=True, timeout=15)
self.cli.command_handler.parent = self
self.cli.command_handler.mainwindow = self.mainwindow
self.cli.connect()