3
0
mirror of https://github.com/jlu5/PyLink.git synced 2025-01-11 20:52:42 +01:00

classes: Remove "opertype" IrcUser() argument

This is useless and should've never been here, oops.
This commit is contained in:
James Lu 2015-08-31 14:10:18 -07:00
parent 531ebbba0a
commit 5480ae14c4
2 changed files with 2 additions and 2 deletions

View File

@ -262,7 +262,7 @@ class Irc():
class IrcUser():
def __init__(self, nick, ts, uid, ident='null', host='null',
realname='PyLink dummy client', realhost='null',
ip='0.0.0.0', opertype='IRC Operator'):
ip='0.0.0.0'):
self.nick = nick
self.ts = ts
self.uid = uid

View File

@ -40,7 +40,7 @@ def spawnClient(irc, nick, ident='null', host='null', realhost=None, modes=set()
realhost = realhost or host
raw_modes = utils.joinModes(modes)
u = irc.users[uid] = IrcUser(nick, ts, uid, ident=ident, host=host, realname=realname,
realhost=realhost, ip=ip, opertype=opertype or 'IRC_Operator')
realhost=realhost, ip=ip)
utils.applyModes(irc, uid, modes)
irc.servers[server].users.add(uid)
_send(irc, server, "EUID {nick} 1 {ts} {modes} {ident} {host} {ip} {uid} "