user: add ident

This commit is contained in:
moneromooo 2016-08-05 16:43:00 +01:00
parent c8470260f0
commit 79bc336ebb
1 changed files with 2 additions and 1 deletions

View File

@ -10,9 +10,10 @@
#
class User:
def __init__(self,network,nick):
def __init__(self,network,nick,ident=None):
self.network=network
self.nick=nick
self.ident=ident
def check_registered(self):
pass